md5($salt+$password)
#1
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.
#2
You'll get line-length exception due to long salt, won't work.
#3
Try to compose your hashlist like this: $hash:$salt.
#4
That would work, but -m 20 doesn't support such long salts.
#5
Thank you for the unswers. Could you tell me what is the salt length limitation?
Can it work with 20-28 letters?
#6
(03-08-2013, 08:35 AM)Kuci Wrote: Try to compose your hashlist like this: $hash:$salt.

In the hash file?