NMAP - Commands
nmap 192.168.56.1
# One Range
nmap 192.168.56.1-255
#Scan IP/Computer
nmap -sP 192.168.56.0/24
#Check the type of the computer info:
nmap -sS -Pn -A 192.168.56.1
# scan the information of the operating system and its version
nmap -A 192.168.56.1
nmap -v -A 192.168.56.1
# check if a firewall is in place at the target network/IP
nmap -sA 192.168.1.254
# Detect different services running on the remote target
nmap –sV 192.168.56.1
# Specific port
nmap 192.168.56.1 –p 80
# Entire subnet with a specific port range
nmap 192.168.56.0/24 –p 1-1000
# Exclude host, hosts
nmap 192.168.56.0/24 --exclude 192.168.1.5
nmap 192.168.56.0/24 --exclude 192.168.1.5,192.168.1.254
# Speedy
nmap -F 192.168.56.1
No comments:
Post a Comment