Показать сообщение отдельно

  #4  
Старый 11.09.2009, 22:20
takas
Познающий
Регистрация: 19.08.2009
Сообщений: 92
С нами: 8805021

Репутация: 23
По умолчанию

Gray_Wolf

по твоей ссылке...

The algorithm to encrypt the password is simply to expand every byte of the password to 2 bytes, swap the higher and lower 4 bits within each byte, xor each byte with A5. For example to encrypt the character "p":

(ASCII is 70 hex):
70 is expanded to 70 00
After the swap the result is: 07 00
XOR with A5: A2 A5

Hence to decrypt it, we will take the odd bytes, XOR with A5, and swap the higher and lower 4 bits.
Take A2
XOR with A5: A2 XOR A5 = 07
Swap: 7 becomes 70.

This tool make use of the WinPcap library and it listen on TCP port 1433 and 2433 and perform the above algorithm to retrieve user name and password.

Почитай разберись и ... посмотри внимательно snifflog.txt
 
Ответить с цитированием