hashcat Forum
md5($salt+$password) - 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: md5($salt+$password) (/thread-2128.html)



md5($salt+$password) - cheetah - 03-07-2013

Hi. I'm new here, pardon for my english, i'm from Russia.
I hope you can help me with my problem:

There is a hash generated by md5("lots of text"+$password), I know the "lots of text" string and i know result hash.

The problem with configuration of attributes, i have:

oclHashcat-plus64.exe -m=20 -a=3 "hash or hash-file-path" "salt-file" --status-timer=1

Maybe i dont need salt at all, the "lots of text" part is static, but about 60 letters long and the password is 6-12 letters long

I appreciate any help you can provide.


RE: md5($salt+$password) - Rolf - 03-08-2013

You'll get line-length exception due to long salt, won't work.


RE: md5($salt+$password) - Kuci - 03-08-2013

Try to compose your hashlist like this: $hash:$salt.


RE: md5($salt+$password) - Rolf - 03-08-2013

That would work, but -m 20 doesn't support such long salts.


RE: md5($salt+$password) - cheetah - 03-08-2013

Thank you for the unswers. Could you tell me what is the salt length limitation?
Can it work with 20-28 letters?


RE: md5($salt+$password) - cheetah - 03-08-2013

(03-08-2013, 08:35 AM)Kuci Wrote: Try to compose your hashlist like this: $hash:$salt.

In the hash file?