Exporting hcxdump file by ESSID
#1
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.
Reply
#2
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
Reply
#3
Perfect. Thanks.
Reply