from scapy.all import *
def pktPrint(pkt):
if pkt.haslayer(Dot11Beacon):
print '[+] Detected 802.11 Beacon Frame'
elif pkt.haslayer(Dot11ProbeReq):
print '[+] Detected 802.11 Probe Request Frame'
elif pkt.haslayer(TCP):
print '[+] Detected a TCP Packet'
elif pkt.haslayer(DNS):
print '[+] Detected a DNS Packet'
conf.iface = 'wlan0mon' #此处写处于监听模式的网卡的名字
sniff(prn=pktPrint) #监听网络中流量的,抓到的每一个参数都传给pktPrint函数
///////////////
上面这段脚本是侦测无线网络的流量
在此之前你要插入网卡,并且将网卡设为监听模式
airmon-ng start wlan0
启动脚本,他会检测四种类型的数据包
测试无线网卡嗅探功能
最新推荐文章于 2024-08-23 11:30:31 发布