Determine WPA2 - 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: Determine WPA2 (/thread-11849.html) |
Determine WPA2 - micneu - 03-10-2024 Hi, I'm new to this topic and here in the forum. If I made my first post in the wrong place, I'm sorry. My English is not that good, please excuse me. how can I determine a WPA from a .hccapx? I tried it with Code: ./hashcat-src/hashcat -d 1 -m 0 -a 0 WILLY.hccapx dicts/rockyou.txt --potfile-path WILLY.pot Mein system ist ein MacBook Pro M1 mit macOS 14 If any information is missing, I will try to provide it. That's the error I'm getting Code: hashcat (v6.2.6-850-gfafb277e0) starting RE: Determine WPA2 - drsnooker - 03-10-2024 WPA2 requires mode 22000 -m 22000 (you're using MD5 mode 0) You might have to convert your cap to 22000 format: https://hashcat.net/cap2hashcat/ ./hashcat-src/hashcat -d 1 -m 22000 -a 0 WILLY.hccapx dicts/rockyou.txt --potfile-path WILLY.pot RE: Determine WPA2 - micneu - 03-10-2024 (03-10-2024, 09:34 PM)drsnooker Wrote: WPA2 requires mode 22000 -m 22000 (you're using MD5 mode 0) thanks I have the file under Linux Code: cap2hccapx.bin WILLY.cap WILLY.hccapx If you run it with the change, I get the same error Code: % ./hashcat-src/hashcat -d 1 -m 22000 -a 0 WILLY.hccapx dicts/rockyou.txt --potfile-path WILLY.pot RE: Determine WPA2 - drsnooker - 03-10-2024 Did you try opening the WILLY.hccapx in a text editor? The hashes should look like the 22000 mode hashes. The exact same lengths, number of characters between '*' etc. https://hashcat.net/wiki/doku.php?id=example_hashes If not there is some other issue... RE: Determine WPA2 - ZerBea - 03-11-2024 hashmode 2500 (WPA binary hash format hccapx) is outdated and has been replaced by hashmode 22000 (WPA ASCII hash format hc22000). cap2hccapx converts dump files to hccapx format (PMKIDs are not supported), so it is outdated, too. Please read: https://hashcat.net/wiki/doku.php?id=cracking_wpawpa2 BTW: rockyou.txt is an ancient wordlist. Try one of these: https://wpa-sec.stanev.org/?dicts https://hashmob.net/resources/hashmob |