LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

nuclei

fast vulnerability scanner

TLDR

Scan target with all templates
$ nuclei -u [https://example.com]
copy
Scan with specific template
$ nuclei -u [https://example.com] -t [template.yaml]
copy
Scan multiple targets
$ nuclei -l [targets.txt]
copy
Scan by severity
$ nuclei -u [https://example.com] -s critical,high
copy
Scan by tags
$ nuclei -u [https://example.com] -tags [cve,oast]
copy
Update templates
$ nuclei -ut
copy
Save output as JSONL
$ nuclei -u [https://example.com] -jsonl -o [results.jsonl]
copy

SYNOPSIS

nuclei [options]

DESCRIPTION

nuclei is a fast, template-based vulnerability scanner developed by ProjectDiscovery. It uses YAML-based templates to define scanning logic for various protocols including HTTP, DNS, TCP, and more.The tool performs targeted scanning based on a large community-driven template library with thousands of checks for CVEs, misconfigurations, exposures, and default credentials. Templates can be customized or written from scratch.

PARAMETERS

-u URL

Target URL to scan.
-l FILE
File containing target list.
-t TEMPLATE
Template or directory to use.
-s, -severity LEVEL
Filter by severity (info, low, medium, high, critical).
-tags TAGS
Filter templates by tags (comma-separated).
-o FILE
Output results to file.
-jsonl
Output results in JSONL format.
-ut, -update-templates
Update nuclei templates to latest version.
-rl, -rate-limit NUM
Maximum requests per second (default: 150).
-c, -concurrency NUM
Maximum number of templates to execute in parallel (default: 25).
-silent
Show only results in output.
-stats
Display scan statistics.
--help
Display help information.

CAVEATS

Only use on authorized targets. Templates require regular updates to include new checks. May generate significant network traffic; use rate limiting in production environments. Some templates may trigger IDS/IPS alerts.

HISTORY

Nuclei was created by ProjectDiscovery as a template-based vulnerability scanner.

SEE ALSO

nmap(1), nikto(1), httpx(1)

Copied to clipboard
Kai