complex md5 salted hash
#1
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.
#2
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.
~