wifi-monitor
wifi-monitor copied to clipboard
Prints the IPs on your local network that're sending the most packets
Bumps [scapy](https://github.com/secdev/scapy) from 2.3.3 to 2.4.1. Release notes Sourced from scapy's releases. v2.4.0 Main changes Python3 support 85% code coverage Core Pcap/PcapNg improvements enhanced Windows support OpenBSD improvements OSX 802.11...
File "wifi-monitor.py", line 93, in monmode = monmode.group(1) AttributeError: 'NoneType' object has no attribute 'group'
These lines: ``` try: promisc = Popen(['airmon-ng', 'start', '%s' % interface], stdout=PIPE, stderr=DN) promisc = promisc.communicate()[0] monmode = re.search('monitor mode enabled on (.+)\)', promisc) monmode = monmode.group(1) except OSError, e:...