Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

HOW to Decode the Binary Password

Elite Diviner
Joined
Aug 23, 2012
Messages
406
Reaction score
99
Since I have no knowledge about programming, decoding numbers and symbols, I just want to know how to convert the binary data password to a normal alphabet figures.
 
Elite Diviner
Joined
Sep 11, 2010
Messages
430
Reaction score
94
is not possible, the passwords are encrypted before being stored, for example with MD5 or any other encryption algorithm and no way to decrypt it. You can use the master password to enter any account.
 
Upvote 0
Joined
May 24, 2007
Messages
720
Reaction score
71
is not possible, the passwords are encrypted before being stored, for example with MD5 or any other encryption algorithm and no way to decrypt it. You can use the master password to enter any account.

Wrong!
MD5 is possible decode ;)

but i think, he talk about HOW to do a website query, in this case, must be used PWCOMPARE
 
Upvote 0
Junior Spellweaver
Joined
Mar 15, 2012
Messages
118
Reaction score
12
is not possible, the passwords are encrypted before being stored, for example with MD5 or any other encryption algorithm and no way to decrypt it. You can use the master password to enter any account.

what is the master password?
 
Upvote 0
Elite Diviner
Joined
Sep 11, 2010
Messages
430
Reaction score
94
you cant decode md5 maybe use some hash table whit most common string's hash but for sure they use a salt on the encryptation process
 
Upvote 0
Newbie Spellweaver
Joined
Mar 31, 2010
Messages
5
Reaction score
0
Sorry.. but you're all wrong..
MSSQL pwdencrypt function doesn't generate a MD5 Hash..
Its an SHA Hash + Salted
that salted will be build the following (PASS is the input):
srand(time()); // Random generator with the current time
S1 = (short) rand(); // Random Number and casted to Short
S2 = (short) rand();
S = S1:S2; // Add both Random Numbers together
PASS = PASS:S // Salt at the End of the unicorn Password
HASH = SHA(PASS); // and thats the final Password

Every Account got a timestamp for when the Account is created, so you've got the Time when the Password is created..
so its Possible to decode it.. i dont tell you anymore abotu this, find out yourself :)

Good luck!
 
Upvote 0
Back
Top