Hash Type Question!
#1
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.
#2
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.
#3
(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!