Last active
April 10, 2018 22:17
-
-
Save orubel/41437261b80cd2bba724890987fa1d14 to your computer and use it in GitHub Desktop.
simple script for finding networks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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