how to add custome hash type
#14
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:
Code:
./oclHashcat64.bin -d 1 -m 2611 -a 3 hash.txt ?a?a?a?a?a?a
-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.
Code:
./oclHashcat64.bin -d 1 -m 2611 -a 0 hash.txt wordlist.txt
-a 0 is a dictionary attack so I provided a wordlist at the end.


Messages In This Thread
how to add custome hash type - by Net_Spy - 10-20-2013, 09:01 PM
RE: how to add custome hash type - by epixoip - 10-20-2013, 09:02 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 09:31 AM
RE: how to add custome hash type - by philsmd - 10-21-2013, 10:18 AM
RE: how to add custome hash type - by KT819GM - 10-21-2013, 10:05 AM
RE: how to add custome hash type - by undeath - 10-21-2013, 12:24 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 01:21 PM
RE: how to add custome hash type - by philsmd - 10-21-2013, 01:27 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 01:30 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 02:42 PM
RE: how to add custome hash type - by epixoip - 10-21-2013, 02:47 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 05:45 PM
RE: how to add custome hash type - by mastercracker - 10-21-2013, 07:38 PM
RE: how to add custome hash type - by Net_Spy - 10-21-2013, 08:42 PM
RE: how to add custome hash type - by Net_Spy - 10-22-2013, 09:16 PM
RE: how to add custome hash type - by epixoip - 10-22-2013, 10:42 PM