Cheatsheets
HomeWriteupsResourcesCheatsheets
Scanning Networks
Scanning Networks
  • Nmap
    • Nmap Options
    • Nmap Port Scan Types
    • Nmap Commands
    • Nmap Port Selection
    • NSE Scripts
Powered by GitBook
On this page

Was this helpful?

  1. Nmap

Nmap Port Selection

Command
Description

nmap <Target IP>

Scan single IP

nmap <Target IP> <Target IP>

Scan specific IPs

nmap <Target IP range>

Scan a range of IPs

nmap <Target Website>

Scan a host

nmap <Target Domain>

Scan a domain

nmap <Target IP/Subnet>

Scan using CIDR notation

nmap -iL file.txt

Scan targets using given file

nmap --exclude <Target IP>

Exclude listed host/ specified IPs exclude from scan

nmap -iR 50

Scan 50 random hosts

PreviousNmap CommandsNextNSE Scripts

Last updated 1 year ago

Was this helpful?