decrypt hex password?

  • We are porting apps (sql 2000) to a new sans cluster (sql 2005). Problem is... we have no source code for one of the old apps and don't know the password. Packet sniffing found a hex string representation, how can we decrypt it?

  • Are you sure it's not just ASCII?

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)

  • We figured it out with this tip. "The password is converted to a wide character format (UNICODE) and each byte XOR'd with a constant fixed value of 0xA5". So it was decrypted by XORing each with OxA5, then flipping the bits and converting that hex value to ascii.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply