md5($salt.$pass) vs md5($pass.$salt) speeds
#1
Hi everyone,
I'm playing with a list of MD5 hashes that have password length of 11 (lowered alpha-numeric) and salt length of 14. I have to attack with md5($salt.$pass)



Because the keyspace is too large 36^11, speed is critical and I noticed in the benchmark result that md5($pass.$salt) has almost the same speed with raw MD5 (-m 0), which nearly double as compare to md5($salt.$pass).

Can someone explain why they are both "half MD5" but so different in speed? Prepend is costly than append?
Is there any other ways to improve this attack?


Thank you!
Reply


Messages In This Thread
md5($salt.$pass) vs md5($pass.$salt) speeds - by spin711 - 05-21-2019, 08:56 AM