hashcat Forum
Hash Type Question! - 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: Hash Type Question! (/thread-2949.html)



Hash Type Question! - hitmanace - 12-27-2013

hey guys i am new to hashing and hash password recovery but i am a fast learner and would love some help as i am still lost i have looked over the wiki and read and watch multiple tutorials,

but i still cant wrap around how to find out which hash is which, so i have given you guys the actual password generating PHP code to help me figure out which type of md5 it is that i should use in hashcat.


function generate_user_password(ElggUser $user, $password) {
return md5($password . $user->salt);
}


Thanks for all help guys! but i think its pass.user.salt hash but please let me know if i am wrong.


RE: Hash Type Question! - philsmd - 12-27-2013

It seems that this is -m 10 = md5 ($pass . $salt)

The "$user" here is only used because the salt depends on the user.

See here http://hashcat.net/wiki/doku.php?id=example_hashes to find the correct format / hash type.


RE: Hash Type Question! - hitmanace - 12-28-2013

(12-27-2013, 08:37 AM)philsmd Wrote: It seems that this is -m 10 = md5 ($pass . $salt)

The "$user" here is only used because the salt depends on the user.

See here http://hashcat.net/wiki/doku.php?id=example_hashes to find the correct format / hash type.

Thanks for the help!