What's new

Welcome to CyberDark

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

10 best Nmap commands

Owner

Owner 

Owner
Moderator
Active User
Joined
Aug 23, 2023
Messages
248
Solutions
3
Reaction score
1,201
Points
3,131
Location
Senegal
Website
cyberdark.org
# Basic Scan
nmap <target_ip>

# Scan a Specific Port
nmap -p <port_number> <target_ip>

# Scan Multiple Ports
nmap -p <port1>,<port2>,<port3> <target_ip>

# Scan All Ports
nmap -p- <target_ip>

# Service Version Detection
nmap -sV <target_ip>

# Network Mapping (Scan Entire Network)
nmap -sn <network_address>

# OS Detection
nmap -O <target_ip>

# Aggressive Scan
nmap -A <target_ip>

# Adjust Timing Template
nmap -T4 <target_ip>

# Save Output to a File
nmap -oN <file_name.txt> <target_ip>
 
Top