Change ESSID in .pcapng
#2
If you modify the ESSID, the content becomes unusable and you can't use it to recover the PlainMasterKey (PMK) on WPA1/WPA2/WPA2kv3, because the algorithm depend on the PreSharedKey (PSK) and the ESSID (used during the ASSOCIATION/REASSOCIATION):
Code:
PMK = PBKDF2(HMAC−SHA1, PSK, ESSID, 4096, 256)
In other words, changing the ESSID will lead to uncrackable hashes and hashcat will fail. That is the major reason why modifying an ESSID is not recommended and not allowed by tools like e.g. hcxtools.


For other purposes (not recovering WPA, WPA2, WPA2kv3) you can remove the entire BEACON frames by tshark:
Code:
$ tshark -r old.pcapng -R '!wlan.fc.type_subtype == 0x08' -2 -F pcapng -w beacon_removed.pcapng

Please notice that ESSIDs are present in PROBEREQUEST frames, PROBERESPONSE frames, ASSOCIATIONREQUEST frames, REASSOCIATIONREQUEST frames and some kind of ACTION frames, too.
State of the art tools will take the ESSID from this frames primary, because they (especially ASSOCIATIONREQUEST and REASSOCIATIONREQUEST frames) contain much more information than a simple BEACON.
Reply


Messages In This Thread
Change ESSID in .pcapng - by DramaKing - 08-16-2022, 09:20 PM
RE: Change ESSID in .pcapng - by ZerBea - 08-17-2022, 09:11 AM
RE: Change ESSID in .pcapng - by DramaKing - 08-17-2022, 11:19 PM
RE: Change ESSID in .pcapng - by ZerBea - 08-18-2022, 05:36 AM