NMap Basic Commands
Nmap Basic Commands
How to Detect All Connected PC in Networknmap -sn 192.168.0.100/24
How to Scan Network Exclude a Specific Host
nmap –exclude 192.168.0.108 192.168.0.1/24
How to Detect Installed OS in Remote PC
nmap -O 192.168.0.102
How to Scan All TCP Port in All Remote PC
nmap -sT 192.168.0.100/24
How to Scan All UDP Ports in Remote PC
nmap -sU 192.168.0.102
How to Scan IP Protocol
nmap -sO 192.168.0.102
How to Detect services of Remote PC
nmap -sV 192.168.1.2
How to Scan Name Server of Website
nmap -sV -T4 -F www.yoursite.com
Comments
Post a Comment