handshake/PMKID from a single SSID #339
-
In the previous version I would use --filterlist_ap to target a specific SSID. I'm not sure how to do that in this version. Looking at the docs it doesn't appear that it is possible. Is it? If so, how would it be done? This is the line from my old script that prompts for the values. The new version has changed a lot. This is how I am trying with 6.3.1-50-gdb8af47 Thanks in advance for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Now the entire filter stuff is done by the Berkeley Packet Filter (BPF) only. Let's say your target AP MAC is To attack more than one target:
Set monitor mode: BTW: More information is here: The option --essid is not a filter option. |
Beta Was this translation helpful? Give feedback.
-
You're welcome. BTW: |
Beta Was this translation helpful? Give feedback.
Now the entire filter stuff is done by the Berkeley Packet Filter (BPF) only.
There are several ways to create the BPF. The simplest way is by tcpdump.
Let's say your target AP MAC is
11:22:33:44:55:66
Set monitor mode:
$ sudo hcxdumptool -m INTERFACENAME
Create BPF:
$ sudo tcpdump -i INTERFACENAME wlan addr3 11:22:33:44:55:66 or wlan addr3 ff:ff:ff:ff:ff:ff -ddd > target.bpf
Run hcxdumptool using this filter:
$ sudo hcxdumptool -i INTERFACENAME --bpf=target.bpf
Please notice:
We do not filter undirected PROBEREQUESTs from CLIENTs, because they may contain a password.
To attack more than one target:
Set monitor mode:
$ sudo hcxdumptool -m INTERFACE…