Last active
December 27, 2015 06:29
-
-
Save nicdev/7282303 to your computer and use it in GitHub Desktop.
Some nmap scans I need to keep notes for
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
# Discover live hosts on a subnet | |
# nmap -sP -PE -PP -n [subnet in CIDR notation] | |
nmap -sP -PE -PP -n 192.168.1.0/24 | |
# Scan for installed software and versions | |
# nmap -sV --version-all [CIDR or IP] | |
nmap -sV --version-all 192.168.1.0/24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment