go-outside-helper 8d4bd9389d
Update ssid.py
2024-03-14 17:52:32 +01:00

20 lines
426 B
Python

#!/usr/bin/env python
__author__ = "Mia Stein"
from scapy.all import *
def PacketHandler(pkt) :
if pkt.haslayer(Dot11) :
if pkt.type == 0 and pkt.subtype == 8 :
if pkt.addr2 not in ap_list :
ap_list.append(pkt.addr2)
print "AP MAC: %s with SSID: %s " %(pkt.addr2, pkt.info)
if __name__ == '__main__':
ap_list = []
sniff(iface="wlp1s0", prn = PacketHandler)