hashcat Forum
complex md5 salted hash - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: complex md5 salted hash (/thread-5996.html)



complex md5 salted hash - stryke - 10-31-2016

Hi,
I have a hash which generated with the following formula:
md5($salt + "-" + md5($pass))
for example:
$salt = "blabla'
$pass = "dada"
so the formula will be:
$hash = md5("blabla-" + md5("dada"))

I saw mode 3710, which is md5($salt.md5($pass)), so can I do something like this:
-m 3710 and $hash:blabla-

Thanks.


RE: complex md5 salted hash - royce - 11-30-2017

Yes, if I understand you correctly - if you're only attacking a single salt, then appending a hyphen to the end of the salt would have the same effect.