Enumerate Wireless setup environments
Commands:
1) Check for Wireless network interfaces
iwconfig 2) Detailed information and statistics about wireless network interfaces and their configurations
iw dev 3) Obtain the BSSID of our target
wash -i WIRELESS_INTERFACE 4) Check if we've any pre installed tools that are having capabilities set to perform network related activities. (cap_net_raw+ep)
getcap -r / 2>/dev/null 5) Check if we can execute preinstalled tools for network related activities as root
sudo -l 6) Check for SUID bit on preinstalled tools
find / -type f -u=s 2>/dev/null 7) Scan available Wi-Fi
iw dev WIRELESS_INTERFACE scan
iwlist WIRELESS_INTERFACE scanExamples:
1) Master Mode NIC
2) Client Mode NIC (Named ESSID)
3) Monitor Mode NIC
4) Managed Mode NIC
Last updated