![]() |
Hashcat token length exception - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashcat token length exception (/thread-8455.html) |
Hashcat token length exception - yahav123 - 06-29-2019 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. RE: Hashcat token length exception - philsmd - 06-30-2019 -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 |