|
Token length exception with RAR hash – what am I doing wrong? - 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: Token length exception with RAR hash – what am I doing wrong? (/thread-13466.html) |
Token length exception with RAR hash – what am I doing wrong? - Olek_michdoch - 01-13-2026 Hello everyone, I’m trying to crack my own RAR archive with hashcat, but I always get this error: Token length exception No hashes loaded. I extracted the hash using rar2john . The hash starts with: $RAR3$*1*... So I’m using: hashcat -m 12500 hash.txt But no matter what I do, hashcat always says the token is too long or malformed. What I already tried:
Questions:
Thanks a lot! RE: Token length exception with RAR hash – what am I doing wrong? - Olek_michdoch - 01-13-2026 I also tried mode 23800, because I thought maybe it is a compressed/encrypted container: hashcat -m 23800 hash.txt But I get exactly the same result. RE: Token length exception with RAR hash – what am I doing wrong? - zamgold - 01-15-2026 Maybe, hash is too long. RE: Token length exception with RAR hash – what am I doing wrong? - b8vr - 01-15-2026 Rar2john creates a hash like "filename:hash" if I remember correctly. Make sure to edit out the "filename:" part. Or if my memory on that is wrong, then it adds the filenames living inside the RAR container at the end of the hash like "hash:filename1:filename2:etc". If that's the case, edit away the filenames at the end. Then run "hashcat --identify <hash>" |