hashcat Forum

Full Version: md5($salt+$password)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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.
You'll get line-length exception due to long salt, won't work.
Try to compose your hashlist like this: $hash:$salt.
That would work, but -m 20 doesn't support such long salts.
Thank you for the unswers. Could you tell me what is the salt length limitation?
Can it work with 20-28 letters?
(03-08-2013, 08:35 AM)Kuci Wrote: [ -> ]Try to compose your hashlist like this: $hash:$salt.

In the hash file?