Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Exporting hcxdump file by ESSID
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a hcxdumptool capture file that has several essid's in it.  I need to export it to a hccapx file, but I only need to include essid's that start with "ME".  Is there any way to do that with hcxpcaptool or another utility?

Thanks.
Step one: convert pcapng to hccapx
$ hcxpcaptool -o test.hccapx capture.pcpng

Step two: get desired hashes
$ wlanhcx2ssid -i test.hccapx -E ME
should do that, as well as
$ hcxessidtool --hccapx1=test.hccapx -E ME --hccapxout=ME.hccapx
Perfect. Thanks.