hashcat Forum
i cant convert a WPA / WPA2 pcap - 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: i cant convert a WPA / WPA2 pcap (/thread-8076.html)



i cant convert a WPA / WPA2 pcap - helenharry - 01-16-2019

please help me. i cant convert a WPA / WPA2 pcap

Zero value timestamps detected in file: in/18893_1495309385.cap.
This prevents correct EAPOL-Key timeout calculation.
Do not use preprocess the capture file with tools such as wpaclean.


RE: i cant convert a WPA / WPA2 pcap - Mem5 - 01-16-2019

What's the tool & commandline used?


RE: i cant convert a WPA / WPA2 pcap - slyexe - 01-17-2019

(01-16-2019, 06:42 AM)helenharry Wrote: please help me. i cant convert a WPA / WPA2 pcap

Zero value timestamps detected in file: in/18893_1495309385.cap.
This prevents correct EAPOL-Key timeout calculation.
Do not use preprocess the capture file with tools such as wpaclean.

your caps were scrubbed meaning they do not have all the essential information for it to convert the cap.


RE: i cant convert a WPA / WPA2 pcap - ZerBea - 01-20-2019

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