dev-resources.site
for different kinds of informations.
๐๐ก๏ธ Mastering Nmap Commands: Unleash Your Network Scanning Superpowers! ๐ก๏ธ๐
Ready to take your network scanning skills to the next level? ๐๐ Here's a breakdown of essential Nmap commands to help you become a scanning ninja! ๐คบ๐ป
๐น Basic Scan ๐น
nmap target
Discover open ports on a target.
๐น Intense Scan ๐น
nmap -T4 -A target
Aggressive scan with OS detection and version information.
๐น UDP Scan ๐น
nmap -sU target
Scan UDP ports for hidden vulnerabilities.
๐น Port Range Scan ๐น
nmap target -p 1-100
Scan a range of ports.
๐น Operating System Detection ๐น
nmap -O target
Identify the target's operating system.
๐น Service Version Detection ๐น
nmap -sV target
Retrieve service version information.
๐น Script Scanning ๐น
nmap --script=<script> target
Execute custom NSE scripts for specific tasks.
๐น Output to File ๐น
nmap -oN output.txt target
Save scan results to a file.
๐น Aggressive Timing ๐น
nmap -T4 target
Speed up the scan with aggressive timing.
๐น Ping Scan ๐น
nmap -sn target
Check if hosts are up without scanning ports.
๐น Exclude Hosts ๐น
nmap target --exclude host
Exclude specific hosts from the scan.
๐น Scan a Network Range ๐น
nmap 192.168.1.0/24
Scan an entire network range.
๐น Firewall Evasion ๐น
nmap -f target
Evade firewalls using fragmentation.
๐น Timing Templates ๐น
nmap --timing <0-5> target
Adjust scan timing with templates.
๐น Verbose Output ๐น
nmap -v target
Get detailed verbose output.
๐น Fast Scan ๐น
nmap -F target
Scan fewer ports, suitable for a quick network overview.
๐น Traceroute ๐น
nmap --traceroute target
Perform a traceroute to discover the path to the target.
๐น Exclude Ports ๐น
nmap target --exclude-ports <port1,port2,...>
Exclude specific ports from the scan.
๐น Scan Multiple Targets ๐น
nmap target1 target2 target3
Scan multiple targets in a single command.
๐น Output in XML Format ๐น
nmap -oX output.xml target
Save scan results in XML format for easy parsing.
๐น Ping-Only Scan ๐น
nmap -sn target
Perform a ping-only scan to check host availability.
๐น Scan IPv6 Addresses ๐น
nmap -6 target
Scan IPv6 addresses instead of IPv4.
๐น Aggressive Script Scan ๐น
nmap -A target
Document your findings! Save scan results for analysis.
Remember, with great power comes great responsibility. Always ensure you have proper authorization before scanning any network or system! ๐ค๐
Perform an aggressive scan with OS detection, version detection, script scanning, and traceroute.
These are just some of the powerful Nmap commands at your disposal. Which one is your go-to for network reconnaissance? Share your favorites and tips below! ๐๐ฌ
Featured ones: