Nmap

Nmap is a free and open source tool used for vulnerability checking, port scanning and, of course, network mapping.

Target

nmap 10.10.10.10

Ports Scan

nmap -p 22 10.10.10.10

Scan Types

nmap -Pn 10.10.10.10

Services & OS Detection

nmap -A 10.10.10.10

Output Formats

nmap -oN target.txt 10.10.10.10

Scripts

nmap -sC -sV 10.10.10.10

IPS / IDS Evasion

Scan by using Decoys.

Scan by using different source IP.

References

Last updated