03-10-2015, 10:19 AM
Is it possible to crack a whirlpool hash if it has been salted? I have a list of hashes, each with a 5 digit number as a salt. How would I go about cracking this? Is it possible with hashcat?
(03-10-2015, 11:05 AM)epixoip Wrote: [ -> ]use -m 6100 and manually add the salt with each attack
(03-10-2015, 10:34 PM)epixoip Wrote: [ -> ]Yes, it's possible. I just told you how. Use -m 6100, and manually append the salt with each attack. Treat the salt as part of the password candidate you're attacking.
For example if the salt is '12345' and you wanted to do a len 6 brute force, you'd use -a 3 ?a?a?a?a?a?a12345
(03-10-2015, 11:18 PM)chickin Wrote: [ -> ]The syntax is:(03-10-2015, 10:34 PM)epixoip Wrote: [ -> ]Yes, it's possible. I just told you how. Use -m 6100, and manually append the salt with each attack. Treat the salt as part of the password candidate you're attacking.
For example if the salt is '12345' and you wanted to do a len 6 brute force, you'd use -a 3 ?a?a?a?a?a?a12345
D:\cudaHashcat-1.33\cudaHashcat64.exe -m 6100 -a 3 ?a?a?a?a?a?aHi5
ZFZMeGZ -o D:\cudaHashcat-1.33\cracked.txt D:\cudaHashcat-1.33\hash.txt - I guess i'm stupid, because I couldn't get it to work