Closed uniformsierra closed 4 years ago
Running active-beacon hcxdumptool will add every received ESSID its internal beacon list. I the user select --essidlist=xxx, this beacons will added to the list. The beacons from Beacons from this list are transmitted in a special time interval. This interval depend on the traffic on the channel and not on a fixed time (e.g. 100 ms = default beacon intervall). Let me think about a switch to transmit only beacons from the essidlist.
Ok, that may work: on option --essidlist= we transmit beacons from this list only on option --active-beacon we transmit beacons from all received ESSIDs on option --essidlist= and --active-beacon we transmit beacons from both
I'll check how to code it....
implemented by this commit: https://github.com/ZerBea/hcxdumptool/commit/7c4b6d9cfdad4b9aff09ca5726388b008140f9b5
--essidlist=xxx will transmit beacons only from essidlist only --active_beacon --essidlist=xxx will transmit beacons from collected ESSIDs and from essidlist --active_beacon will transmit beacons from collected ESSIDs only
please test and close issue if it works.
Important notice: The commit affect beacon behavior, only! It doesn't prevent that a CLIENT tries to probe or to authenticate to hcxdumptool. To prevent this, too, you must use Berkeley Packet Filter Code (recommended) or filter options.
OK, thank you for this feature. I have had a test and it works as expected. I think your solution gives us good flexibility, too.
Great work, I will close issue.
Good to hear that. Unfortunately we can't prevent that a CLIENT probe us or authenticate to us. Especially when MAC randomization is in use, it is nearly impossible to prevent that. Please notice: In addition to the essidlist we transmit a hidden BEACON and an open system BEACON, too. We need this to wake up some "sleeping" CLIENTs. This BEACONs are hidden in network lists.
Yes thank you for highlighting that CLIENT authenticate could happen. I can see the other BEACONS, too - still, we are way less noisy than before.
Thank you for this useful tool.
I am trying to test capture M1/M2 from clients which i don't know their MAC address (ap-less) but i do know their SSID (I am using an essidlist file). I do not want to interact with any other AP/client other than the clients listed in the essidlist file.
I am noticing (by using airodump on another PC) that there are many more beacons being sent from hcxdumptool, that are not in the essidlist. I'm guessing this is due to the --active-beacon switch, but if I don't use that hcxdumptool does not broadcast my essidlist...
I have tested with different wifi cards and architectures (x86 and ARM) with hcxdumptool versions from 5.x to 6.0.6. I have tried lots of command switch combinations, but most commonly; hxcdumptool -i wlan0 -c 9 --disable_ap_attacks --active-beacon --essidlist=essidlist.txt -o capture.pcap
Is there a way to make hcxdumptool broadcast ONLY beacons from the essidlist file and nothing else? I would like to be able to broacast every 1 second for reliable testing.