Monitoring
View Frequency of Wireless Adapter
iwlist wlxc4e984103ac8 frequencyView Nearby Access Points
sudo iw dev wlxc4e984103ac8 scan | grep SSIDairodump-ng --wps -w airodump_sweep_results wlan0mon
wash -a -i wlan0monSet interface to Monitoring Mode:
airmon-ng start wlan0
ifconfig wlan0 down && iwconfig wlan0 mode monitor && ifconfig wlan0 upSet interface to monitoring mode on a specified channel:
airmon-ng start wlan0 8
iwconfig wlan0 channel 8[Optional] Kill services that might interfere with wireless network interfaces in monitor mode:
airmon-ng check killSet interface back to managed mode
airmon-ng stop wlan0mon
ifconfig wlan0 down && iwconfig wlan0 mode managed && ifconfig wlan0 upMonitor a WiFi network to capture handshakes/requests
Create Virtual Access Point (VAP) named mon0
Verify using TCPdump for traffic on VAP
Delete VAP
Last updated