[go: up one dir, main page]

0% found this document useful (0 votes)
15 views1 page

Nmap Command Box

This document provides a comprehensive list of Nmap commands for network scanning. It includes various types of scans such as basic, ping, specific port, and aggressive scans, along with options for service detection and output saving. Each command is formatted with its syntax for easy reference.

Uploaded by

kingkaking1234
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Nmap Command Box

This document provides a comprehensive list of Nmap commands for network scanning. It includes various types of scans such as basic, ping, specific port, and aggressive scans, along with options for service detection and output saving. Each command is formatted with its syntax for easy reference.

Uploaded by

kingkaking1234
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

NMAP COMMAND BOX

+-------------------------------------------------------------+

| NMAP COMMANDS |

+-------------------------------------------------------------+

| Basic Scan | nmap <IP> |

| Ping Scan | nmap -sn <IP>/24 |

| Specific Port Scan | nmap -p 21,22,80 <IP> |

| All Ports Scan | nmap -p- <IP> |

| Service & Version Detection | nmap -sV <IP> |

| OS Detection | sudo nmap -O <IP> |

| Aggressive Scan | sudo nmap -A <IP> |

| Multiple IPs | nmap <IP1> <IP2> |

| IP Range | nmap <IP-range> |

| Save Output | nmap -oN file.txt <IP> |

| Top 100 Ports | nmap --top-ports 100 <IP> |

| Stealth Scan (SYN) | sudo nmap -sS <IP> |

| Timing (Speed Control) | nmap -T4 <IP> |

| FTP Anonymous Script | nmap --script=ftp-anon -p21 <IP> |

| Full Combo (Ultimate) | sudo nmap -sS -sV -O -A -T4 -p- <IP> |

+-------------------------------------------------------------+

You might also like