hashcat Forum
Exporting hcxdump file by ESSID - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Developer (https://hashcat.net/forum/forum-39.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-40.html)
+--- Thread: Exporting hcxdump file by ESSID (/thread-8766.html)



Exporting hcxdump file by ESSID - slawson - 11-09-2019

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.


RE: Exporting hcxdump file by ESSID - ZerBea - 11-09-2019

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


RE: Exporting hcxdump file by ESSID - slawson - 11-09-2019

Perfect. Thanks.