├── README.md └── boss-detector.py /README.md: -------------------------------------------------------------------------------- 1 | # Boss Detector 2 | 3 | It's just a begining... 4 | 5 | -------------------------------------------------------------------------------- /boss-detector.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import pyshark 3 | 4 | #capture = pyshark.LiveCapture(interface='wlan0mon', display_filter='wlan.addr == c0:65:99:2a:d1:90 && radiotap.dbm_antsignal <= -30') 5 | capture = pyshark.LiveCapture(interface='wlan0mon', display_filter='wlan.addr == c0:65:99:2a:d1:90 && radiotap.dbm_antsignal <= -30') 6 | #capture.sniff(timeout=50) 7 | #capture 8 | 9 | for packet in capture.sniff_continuously(packet_count=1): 10 | print packet.pretty_print() 11 | # for field in packet.radiotap.field_names: 12 | # print "FIELD [%s] : %s" % (field, packet.radiotap.get_field_value(field)) 13 | 14 | 15 | --------------------------------------------------------------------------------