
May 16th, 2002, 12:04 PM
|
|
Junior Member
|
|
Join Date: Jan 2002
Location: Buffalo, NY
Posts: 18
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Password Encryption
I have a program I need to break into. The username and password are stored in a MS SQL table. I can access them easily thourgh the enterprise management console to see the username and password fields. The username is stored in uppercase cleartext, the password is not. There is some sort of math that is applied to the password to come up with something incoherent.
I know the passwords of other users, and I was hoping it was going to be a basic look up table. A always equals Z or some such, but this doesn't seem to be the case.
My boss changed her password from what it was to "aaaaa" (no quotes). The password in the table then changed, but it changed to, ")3,.4". (Again, no quotes.)
You will see that if you have a 5 letter PW, the excrypted version will also be 5 letters. I found this to be true with all fo the passwords that I know.
Another user's PW is "tequila" the encrypted version is, ">9>D>B,".
From what I can see, the characters available for the encryption are upper and lower case characters as well as numbers and symbols. I am curious is maybe it's the ascii lookup table that they are using. A = 168 and such.
All help is greatly appreciated!
-Matt
|