Created
March 6, 2012 22:11
-
-
Save albohlabs/1989333 to your computer and use it in GitHub Desktop.
CLI: nmap
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
# fingerprint | get OS | |
nmap -O | |
# fingerprint with port | |
nmap -O -p 22,80 | |
# full TCP scan | |
nmap -sT -p1-65535 | |
# full UDP scan | |
nmap -sU -T4 -p1-65535 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment