简体   繁体   English

扫描所有连接到特定 WIFI 的客户端

[英]Scan all clients that connected to specific WIFI

Running everything on kali.在kali上运行一切。
I found all wifi networks nearby and their BSSIDs.我找到了附近的所有 wifi 网络及其 BSSID。 I am using a network card with monitor mode on.我正在使用开启监控模式的网卡。 Now I want to find all clients that connected to that specific BSSID现在我想查找连接到该特定 BSSID 的所有客户端

Here is how this achieved with airodump-ng这是使用 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 .我想使用scapy达到同样的效果。

Can't find any proper reference to achieve that.找不到任何适当的参考来实现这一目标。

Thanks谢谢

NMap also has a python librar y that makes scanning much simpler. NMap 还有一个python 库,它使扫描更加简单。 You can find the documentation here .您可以在此处找到文档。

For example this is what a ping scan would look like:例如,这是 ping 扫描的样子:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM