Skip to main content
ASM Cheatsheet

naabu

Intermediate
Actively maintained

Fast SYN/CONNECT port scanning built for pipelines

https://github.com/projectdiscovery/naabu

Installation

# Requires libpcap (sudo apt install libpcap-dev / brew install libpcap)
go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest

Usage

Basic Usage

# Scan the top ports on a host
naabu -host example.com -top-ports 100

# Scan a list, rate-limited to stay polite
naabu -list hosts.txt -top-ports 1000 -rate 500

# Hand results to nmap for service/version detection
naabu -list hosts.txt -top-ports 1000 -silent \
  | naabu -nmap-cli 'nmap -sV -oX services.xml'

# Feed straight into httpx to find web services on non-standard ports
naabu -list hosts.txt -silent | httpx -silent -title