Hashcat token length exception
#1
Hey, I'm trying to crack MD5 + SALT hash, but I'm stuck at this error:

token length exception.

my command is:

hashcat -m 10 -a 0 -o /Users/-------/Desktop/Hash.txt /Users/---------/Desktop/rockyou.txt

and even though I changed attack modes and tried all possible hash modes It still gives me the error.

The hash is: 3476800978b8b3d7ab687191a67d5784:7591341, in case that the hash mode isn't correct.
Reply
#2
-o is only used for the outfile (that's why "-o" is a shorter version of --outfile)

the general format is -a 0 hash.txt dict.txt, but you are only specifying the outfile (-o) and a dict.

this should work instead:
Code:
hashcat -m 10 -a 0 Hash.txt rockyou.txt
Reply