Thread: Password MD5 Encryption

Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1 Password MD5 Encryption 
    Apocraphy Owner/Dev

    o Snaappp's Avatar
    Join Date
    Nov 2012
    Posts
    657
    Thanks given
    9
    Thanks received
    85
    Rep Power
    81
    Code:
    				case 1:
    					if (token.equals("character-password")) {
    						if (playerPass.equalsIgnoreCase(token2)) {
    							playerPass = token2;
    						} else {
    							return 3;
    						}
    					}
    					break;
    That is mine, in the tutorial i used it says look for:
    Code:
    if (playerPass.equalsIgnoreCase(token2) || Misc.basicEncrypt(playerPass).equals(token2)) {
    and change it to:
    Code:
    if (playerPass.equalsIgnoreCase(token2) || Misc.basicEncrypt(playerPass).equals(token2) || Misc.md5Hash(playerPass).equals(token2)) {
    what would i add to my code to make it save the encryptions ?

    Last Known As oGusher

    Reply With Quote  
     

  2. #2  
    Apocraphy Owner/Dev

    o Snaappp's Avatar
    Join Date
    Nov 2012
    Posts
    657
    Thanks given
    9
    Thanks received
    85
    Rep Power
    81
    Bump

    Last Known As oGusher

    Reply With Quote  
     

  3. #3  
    Apocraphy Owner/Dev

    o Snaappp's Avatar
    Join Date
    Nov 2012
    Posts
    657
    Thanks given
    9
    Thanks received
    85
    Rep Power
    81
    Bump

    Last Known As oGusher

    Reply With Quote  
     

  4. #4  
    Donator

    Old Oak's Avatar
    Join Date
    May 2011
    Age
    29
    Posts
    1,552
    Thanks given
    542
    Thanks received
    435
    Rep Power
    189
    It is so easy to decrypt md5 it's close to pointless to encrypt.
    Attached image
    Reply With Quote  
     

  5. #5  
    don't leech guys

    ANTILEECH's Avatar
    Join Date
    Jun 2013
    Posts
    736
    Thanks given
    171
    Thanks received
    196
    Rep Power
    129
    Was about to say the same thing Luke said. You can just decrypt MD5 hashes online
    Reply With Quote  
     

  6. #6  
    Donator

    Old Oak's Avatar
    Join Date
    May 2011
    Age
    29
    Posts
    1,552
    Thanks given
    542
    Thanks received
    435
    Rep Power
    189
    Quote Originally Posted by KingMax View Post
    Was about to say the same thing Luke said. You can just decrypt MD5 hashes online
    Yep.

    Actually, its not hard to decrypt any of the basic hash algos. For example, the ones vbulletin and IPB use, are pretty easy for me to decrypt, and my word list is only 7 gigs
    Attached image
    Reply With Quote  
     

  7. #7  
    Registered Member Nouish's Avatar
    Join Date
    Jun 2011
    Posts
    822
    Thanks given
    142
    Thanks received
    177
    Rep Power
    282
    Quote Originally Posted by `Luke View Post
    It is so easy to decrypt md5 it's close to pointless to encrypt.
    Quote Originally Posted by KingMax View Post
    Was about to say the same thing Luke said. You can just decrypt MD5 hashes online
    You don't decrypt MD-5 hashes... You compare them to a database full of hashes to find matches.
    Reply With Quote  
     

  8. #8  
    Donator

    Old Oak's Avatar
    Join Date
    May 2011
    Age
    29
    Posts
    1,552
    Thanks given
    542
    Thanks received
    435
    Rep Power
    189
    Quote Originally Posted by Nouish View Post
    You don't decrypt MD-5 hashes... You compare them to a database full of hashes to find matches.
    Decrypt: Make (a coded or unclear message*) intelligible.
    * The hash

    Straight from a google search.
    Attached image
    Reply With Quote  
     

  9. #9  
    Renown Programmer

    Join Date
    Dec 2010
    Posts
    2,876
    Thanks given
    508
    Thanks received
    1,898
    Rep Power
    5000
    first of all md5 is not 'encryption'

    Quote Originally Posted by `Luke View Post
    It is so easy to decrypt md5 it's close to pointless to encrypt.
    maybe if you are not aware of what a salt is
    never talk to me or my wife's son ever again
    Reply With Quote  
     

  10. #10  
    Donator

    Old Oak's Avatar
    Join Date
    May 2011
    Age
    29
    Posts
    1,552
    Thanks given
    542
    Thanks received
    435
    Rep Power
    189
    Quote Originally Posted by TurboNeger420 View Post
    first of all md5 is not 'encryption'



    maybe if you are not aware of what a salt is
    I know what salts are.
    Attached image
    Reply With Quote  
     

Page 1 of 3 123 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Adding MD5 Encryption
    By MH-60S in forum Tutorials
    Replies: 24
    Last Post: 09-30-2010, 10:09 PM
  2. Replies: 3
    Last Post: 08-12-2010, 06:24 PM
  3. Replies: 13
    Last Post: 09-18-2009, 06:50 PM
  4. Reversing MD5 encryption
    By Its paris in forum Help
    Replies: 15
    Last Post: 09-14-2009, 11:51 PM
  5. Replies: 21
    Last Post: 05-28-2009, 01:37 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •