Last active
September 2, 2015 16:21
-
-
Save nguyendangminh/93ec28eb93a0fe0031d2 to your computer and use it in GitHub Desktop.
nmap cookbook
This file contains hidden or 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
$ sudo apt-get install nmap | |
# Scan all hosts in the network (between 192.168.1.0 and 192.168.1.255) by ping | |
$ nmap -sP 192.168.1.0/24 | |
# Scan all open ports on a host | |
$ nmap 192.168.1.123 | |
# Detect OS, services | |
$ nmap -A minhnd.com | |
$ namp -O minhnd.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment