Ga naar de inhoud
Home » Nmap Voorbeelden

Nmap Voorbeelden

Scan het hele netwerk en ga alle poorten langs:

nmap -sV -p 1-65535 10.0.0.0/8

This command will scan all of your local IP range (assuming your in the 192.168.1.0-254 range), and will perform service identification (-sV) and will scan all ports (-p 1-65535). Since you are running this as a normal user and not root it will be TCP Connect based scan. If you run the command with sudo at the front it will run as a TCP SYN scan.

What’s the OS of 10.0.0.150

nmap -O 10.0.0.150

or more verbose

nmap -vv -O 10.0.0.150

abc