i cant convert a WPA / WPA2 pcap
#4
and if you really need to clean up your cap file: tshark is your friend

for output format pcap (cap2hccapx understand this):
tshark -r raw.cap -R "(wlan.fc.type_subtype == 0x00 || wlan.fc.type_subtype == 0x02 || wlan.fc.type_subtype == 0x04 || wlan.fc.type_subtype == 0x05 || wlan.fc.type_subtype == 0x08 || eapol)" -2 -F pcap -w cleaned.pcap

or new pcapng format (hcxpcaptool understand this):
tshark -r raw.cap -R "(wlan.fc.type_subtype == 0x00 || wlan.fc.type_subtype == 0x02 || wlan.fc.type_subtype == 0x04 || wlan.fc.type_subtype == 0x05 || wlan.fc.type_subtype == 0x08 || eapol)" -2 -F pcapng -w cleaned.pcapng


Messages In This Thread
i cant convert a WPA / WPA2 pcap - by helenharry - 01-16-2019, 06:42 AM
RE: i cant convert a WPA / WPA2 pcap - by Mem5 - 01-16-2019, 06:08 PM
RE: i cant convert a WPA / WPA2 pcap - by slyexe - 01-17-2019, 01:15 AM
RE: i cant convert a WPA / WPA2 pcap - by ZerBea - 01-20-2019, 09:09 PM