Scan all clients that connected to specific WIFI

658 Views Asked by At

Running everything on kali.
I found all wifi networks nearby and their BSSIDs. I am using a network card with monitor mode on. Now I want to find all clients that connected to that specific BSSID

Here is how this achieved with airodump-ng

airodump-ng -d "target's BSSID" -c "target's channel number" "wireless adapter monitor mode name"

I want to achieve the same effect using scapy.

Can't find any proper reference to achieve that.

Thanks

1

There are 1 best solutions below

1
Nate Mendes On

NMap also has a python library that makes scanning much simpler. You can find the documentation here.

For example this is what a ping scan would look like:

 import nmap3 as nm
 nmap = nm.NmapScanTechniques()
 results = nm.nmap_ping_scan()