no hashes loaded - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: no hashes loaded (/thread-12108.html) |
no hashes loaded - xersec - 08-11-2024 I'm trying to crack the WPA2 password, but I get some kind of error. What am I doing: I have.pcap dump, I'll convert it to .hccapx: ./cap2hccapx file.pcap output.hccapx and he writes to me that 2 handshakes are recorded in the file. next, I'm trying to decrypt the password in hashcat: hashcat -m 22000 -a 0 output.hccapx rockyou.txt but I'm getting errors.: Minimum password length supported by kernel: 8 Maximum password length supported by kernel: 63 Hashfile '/Users/user/Desktop/output.hccapx' on line 1 (HCPX): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 2 (<?WMM?x??y): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 3 (): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 4 (<?WMM?x??): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 5 (<?WMM?x??y): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 6 (): Separator unmatched Hashfile '/Users/user/Desktop/output.hccapx' on line 7 (<?WMM?x??): Separator unmatched No hashes loaded. What could be the problem? RE: no hashes loaded - ZerBea - 08-11-2024 The hash mode 2500 and its binary hash file format (hccapx) is outdated. The new hash mode is 22000 which takes a new ASCII file format (hc22000). It combines EAPOL and PMKID. You can't use the new hash mode with old hccapx files! More information about the new format is here: https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2 |