hashcat Forum
What's wrong? the answer is incorrect - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html)
+--- Thread: What's wrong? the answer is incorrect (/thread-537.html)



What's wrong? the answer is incorrect - nobody - 10-02-2011

Hashcat 0.37 shows the answer is "sys" :
but md5(lusgUYkNU6JxJKSBsOZGiZTQGm3StdrKsys) =435857510eac564d8980dc919acc485a


Quote:D:\hashcat>Hashcat-cli64.exe -a 0 -m 1 hash.txt dict.txt
Initializing hashcat v0.37 by atom with 8 threads and 32mb segment-size...

NOTE: press enter for status-screen

Added hashes from file hash.txt: 1 (1 salts)
Activating quick-digest mode for single-hash with salt
674068537efe05f74c4d668f32f7ddba:lusgUYkNU6JxJKSBsOZGiZTQGm3StdrKConfusedys
All hashes have been recovered

D:\hashcat>more hash.txt
674068537efe05f74c4d668f32f7ddba:lusgUYkNU6JxJKSBsOZGiZTQGm3StdrK

D:\hashcat>more dict.txt
sys



RE: What's wrong? the answer is incorrect - San - 10-02-2011

Hi,

-m 1 = md5($pass.$salt)
Here your salt is "lusgUYkNU6JxJKSBsOZGiZTQGm3StdrK" and your password is "sys".
The recovered hash is correct.


RE: What's wrong? the answer is incorrect - nobody - 10-02-2011

Thanks you. You are right!