![]() |
Super stuck - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Super stuck (/thread-9591.html) |
Super stuck - Morinook - 10-25-2020 So I’m a bit new to all of this. I am testing on a old router that I bought, I do t know the password so I decided to tinker. I have been able to get all the way to capturing the handshake and got a hccap file but that’s as far as I got, how do I crack it from there, at this point I’m more curious if it even captured the password at all than continuing to crack it on a old laptop. I’ve already reset the router so the password isn’t the same but curiosity is getting the best of me... Does anyone have the ability to see the password from the file or any help at all would be greatly appreciated.. RE: Super stuck - drsnooker - 10-25-2020 It's really not that complicated and is all in the help files. Here's the dos command to make it go. hashcat -m 2500 -w 4 filename.hccapx dictionary.txt RE: Super stuck - ZerBea - 10-25-2020 Please notice that hash mode 2500 is deprecated as well as hash mode 16800 (hashcat >= 6.0.0). You should use hash mode 22000 instead, because it takes PMKID and EAPOL within the same hash file. Code: $ hashcat --help | grep PMKID+EAPOL $ hashcat -m 22000 hashfile.22000 wordlist.txt |