Python Hidden SSID Scraper

Another cool python script here from TJ O’Conner’s work – this comes in handy 🙂 #!/usr/bin/python # -*- coding: utf-8 -*- import sys from scapy.all import * interface = ‘mon0’ hiddenNets = [] unhiddenNets = [] def sniffDot11(p): if p.haslayer(Dot11ProbeResp): addr2 = p.getlayer(Dot11).addr2 if (addr2 Read More …