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.
Printable View
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.
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.
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
Good luck decoding Md5. You're smart anyway.
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!
Ok, ill ask Turing for help. Maybe he can help...
where i can know master password at which database?