HOW to Decode the Binary Password

Results 1 to 9 of 9
  1. #1
    TheOne jaguar666 is offline
    MemberRank
    Aug 2012 Join Date
    Comfort RoomLocation
    407Posts

    happy HOW to Decode the Binary Password

    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.


  2. #2
    Account Upgraded | Title Enabled! cadena is offline
    MemberRank
    Sep 2010 Join Date
    432Posts

    Re: HOW to Decode the Binary Password

    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.

  3. #3
    Account Upgraded | Title Enabled! magraopb is offline
    MemberRank
    May 2007 Join Date
    BrazilLocation
    742Posts

    Re: HOW to Decode the Binary Password

    Quote Originally Posted by cadena View Post
    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

  4. #4
    Valued Member ToxicMoon is offline
    MemberRank
    Mar 2012 Join Date
    5 star hotelLocation
    118Posts

    Re: HOW to Decode the Binary Password

    Quote Originally Posted by cadena View Post
    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?

  5. #5
    Account Upgraded | Title Enabled! cadena is offline
    MemberRank
    Sep 2010 Join Date
    432Posts

    Re: HOW to Decode the Binary Password

    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

  6. #6
    Account Upgraded | Title Enabled! master_unknown is offline
    MemberRank
    Oct 2004 Join Date
    https://discordLocation
    1,241Posts

    Re: HOW to Decode the Binary Password

    Good luck decoding Md5. You're smart anyway.

  7. #7
    Apprentice activeh22 is offline
    MemberRank
    Mar 2010 Join Date
    7Posts

    Re: HOW to Decode the Binary Password

    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!

  8. #8
    Account Upgraded | Title Enabled! cadena is offline
    MemberRank
    Sep 2010 Join Date
    432Posts

    Re: HOW to Decode the Binary Password

    Ok, ill ask Turing for help. Maybe he can help...

  9. #9
    Valued Member amiidotcom is offline
    MemberRank
    Aug 2016 Join Date
    MYLocation
    108Posts

    Re: HOW to Decode the Binary Password

    where i can know master password at which database?



Advertisement