10-21-2013, 07:38 PM
First, you have to mask certain characters of your hash or you will get a ban. If the hashing algorithm is md5(md5($pass).9486) then you would need to hash every words of your wordlist with MD5 before using it with the MD5($pass.$salt) algorithm (which is -m 11). I don't see why you want to complicate your life doing that. For both algorithm mentioned, yes the format in your hash file has to be hash:9486. Finally, if I have to edit your command line it would be this way:
-a 3 means bruteforce or mask attack so I provided a mask to look at every 6 character words that has upperalpha, loweralpha,numbers and/or symbols.
-a 0 is a dictionary attack so I provided a wordlist at the end.
Code:
./oclHashcat64.bin -d 1 -m 2611 -a 3 hash.txt ?a?a?a?a?a?a
Code:
./oclHashcat64.bin -d 1 -m 2611 -a 0 hash.txt wordlist.txt