使用Python中的Scapy嗅开wifi网络

时间:2017-04-05 10:56:33

标签: wifi scapy

我需要使用Python在Scapy中嗅探Open WiFi网络。我不想嗅加密的。我已经搜索过,找不到合适的方法或文档。这是Python代码:

z=deque()

def ReadPkts(x):

if x.haslayer(Dot11Beacon):

    if x.type==0 and x.subtype==8:  # 0 is management, 8 is Beacon frame
        if x.addr2 not in z:     # ssid
            if x.info not in z:  # bssid
                z.extend((x.info,x.addr2)) 

我需要的是一行代码来检测这样的网络。 感谢

0 个答案:

没有答案