Created
May 9, 2011 16:11
-
-
Save anonymous/962802 to your computer and use it in GitHub Desktop.
scan.sh - quickly scan your surroundings
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
#!/bin/bash | |
# scan.sh | |
for i in $(/var/root/bin/map | grep "scan report" | awk '{print $5}'); do | |
nmap -sC -F $i | tee -a scan_output.txt | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment