April 26, 2007 at 3:22 pm
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?
April 26, 2007 at 7:55 pm
Are you sure it's not just ASCII?
--Jeff Moden
Change is inevitable... Change for the better is not.
April 27, 2007 at 4:57 am
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