2/20/2006
Nmap Tricks
Scan all reserved TCP ports on ip address
nmap -v ip address
Scan all reserved TCP ports on ip address and try to detect software and version listening on open ports
nmap -v -sV ip address
Default is to output to stdout. You can pipe to a file with:
nmap -v ip address > filename
or by using one of the output parameters.
Output in normal human readable format.
-oN filename
Output in XML format. This is useful for passing to other applications for further processing or converting to HTML.
-oX filename
Output in grepable format. This option provides all of the information on one line so it can easily be found using the grep command.
-oG filename
Popularity: 14%


