Skip to content

Instantly share code, notes, and snippets.

@orubel
Last active April 10, 2018 22:17
Show Gist options
  • Save orubel/41437261b80cd2bba724890987fa1d14 to your computer and use it in GitHub Desktop.
Save orubel/41437261b80cd2bba724890987fa1d14 to your computer and use it in GitHub Desktop.
simple script for finding networks
# manually update the devices for 'arp' list
sudo nmap -sP bottledwind-master
# find listening devices on your network
arp -a | sed 's/[()]//g' | sed 's/at //g' | awk '{print $1, $2, $3;}'
# modification of 'sudo iwlist wlan0 scan'
sudo iwlist wlan0 scanning | egrep 'Cell |ESSID|IEEE 802.11i/WPA2 Version 1|WPA Version 1|Group Cipher|Pairwise Ciphers|Authentication Suites'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment