2020-04-04 16:46:21 +00:00
< h1 align = "left" >
< img src = "static/nuclei-logo.png" alt = "nuclei" width = "200px" > < / a >
< br >
< / h1 >
[![License ](https://img.shields.io/badge/license-MIT-_red.svg )](https://opensource.org/licenses/MIT)
[![Go Report Card ](https://goreportcard.com/badge/github.com/projectdiscovery/nuclei )](https://goreportcard.com/report/github.com/projectdiscovery/nuclei)
[![contributions welcome ](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat )](https://github.com/projectdiscovery/nuclei/issues)
2020-08-17 19:38:55 +00:00
[![GitHub Release ](https://img.shields.io/github/release/projectdiscovery/nuclei )](https://github.com/projectdiscovery/nuclei/releases)
[![Follow on Twitter ](https://img.shields.io/twitter/follow/pdnuclei.svg?logo=twitter )](https://twitter.com/pdnuclei)
[![Docker Images ](https://img.shields.io/docker/pulls/projectdiscovery/nuclei.svg )](https://hub.docker.com/r/projectdiscovery/nuclei)
2020-08-08 10:58:57 +00:00
[![Chat on Discord ](https://img.shields.io/discord/695645237418131507.svg?logo=discord )](https://discord.gg/KECAGdH)
2020-04-04 16:46:21 +00:00
2020-04-05 11:36:09 +00:00
Nuclei is a fast tool for configurable targeted scanning based on templates offering massive extensibility and ease of use.
2020-04-03 18:47:57 +00:00
2020-04-04 19:01:40 +00:00
Nuclei is used to send requests across targets based on a template leading to zero false positives and providing effective scanning for known paths. Main use cases for nuclei are during initial reconnaissance phase to quickly check for low hanging fruits or CVEs across targets that are known and easily detectable. It uses [retryablehttp-go library ](https://github.com/projectdiscovery/retryablehttp-go ) designed to handle various errors and retries in case of blocking by WAFs, this is also one of our core modules from custom-queries.
2020-04-04 17:06:04 +00:00
2020-08-24 18:00:56 +00:00
We have also [open-sourced a template repository ](https://github.com/projectdiscovery/nuclei-templates ) to maintain various type of templates, we hope that you will contribute there too. Templates are provided in hopes that these will be useful and will allow everyone to build their own templates for the scanner. Checkout the templating guide at [**nuclei.projectdiscovery.io** ](https://nuclei.projectdiscovery.io/templating-guide/ ) for a primer on nuclei templates.
2020-04-04 16:46:21 +00:00
# Resources
- [Resources ](#resources )
- [Features ](#features )
- [Usage ](#usage )
- [Installation Instructions ](#installation-instructions )
- [From Binary ](#from-binary )
- [From Source ](#from-source )
2020-07-12 15:41:01 +00:00
- [From Github ](#from-github )
2020-06-28 05:18:52 +00:00
- [Nuclei templates ](#nuclei-templates )
2020-04-04 16:46:21 +00:00
- [Running nuclei ](#running-nuclei )
2020-04-28 16:34:09 +00:00
- [1. Running nuclei with a single template. ](#1-running-nuclei-with-a-single-template )
- [2. Running nuclei with multiple templates. ](#2-running-nuclei-with-multiple-templates )
- [3. Automating nuclei with subfinder and any other similar tool. ](#3-automating-nuclei-with-subfinder-and-any-other-similar-tool )
2020-07-13 05:11:34 +00:00
- [4. Running nuclei in a Docker ](#running-in-a-docker-container )
2020-04-04 19:16:52 +00:00
- [Thanks ](#thanks )
2020-04-04 16:46:21 +00:00
# Features
< h1 align = "left" >
2020-04-04 19:23:45 +00:00
< img src = "static/nuclei-run.png" alt = "nuclei" width = "700px" > < / a >
2020-04-04 16:46:21 +00:00
< br >
< / h1 >
- Simple and modular code base making it easy to contribute.
2020-04-04 19:01:40 +00:00
- Fast And fully configurable using a template based engine.
2020-04-04 17:06:04 +00:00
- Handles edge cases doing retries, backoffs etc for handling WAFs.
- Smart matching functionality for zero false positive scanning.
2020-04-04 16:46:21 +00:00
# Usage
```bash
nuclei -h
```
This will display help for the tool. Here are all the switches it supports.
2020-04-28 16:34:09 +00:00
| Flag | Description | Example |
2020-08-02 12:44:49 +00:00
|:-------------------:|:-------------------------------------------------------:|:----------------------------------------------------:|
2020-04-28 16:34:09 +00:00
| -c | Number of concurrent requests (default 10) | nuclei -c 100 |
| -l | List of urls to run templates | nuclei -l urls.txt |
2020-06-28 05:18:52 +00:00
| -target | Target to scan using templates | nuclei -target hxxps://example.com |
2020-04-28 16:34:09 +00:00
| -t | Templates input file/files to check across hosts | nuclei -t git-core.yaml |
2020-06-28 05:18:52 +00:00
| -t | Templates input file/files to check across hosts | nuclei -t nuclei-templates/cves/ |
2020-04-28 16:34:09 +00:00
| -nC | Don't Use colors in output | nuclei -nC |
2020-06-28 05:18:52 +00:00
| -json | Prints and write output in json format | nuclei -json |
2020-08-04 13:16:41 +00:00
| -json-requests | Write requests/responses for matches in JSON output | nuclei -json -json-requests |
2020-04-28 16:34:09 +00:00
| -o | File to save output result (optional) | nuclei -o output.txt |
2020-08-02 12:44:49 +00:00
| -pbar | Enable the progress bar (optional) | nuclei -pbar |
2020-04-28 16:34:09 +00:00
| -silent | Show only found results in output | nuclei -silent |
| -retries | Number of times to retry a failed request (default 1) | nuclei -retries 1 |
| -timeout | Seconds to wait before timeout (default 5) | nuclei -timeout 5 |
2020-06-22 14:48:58 +00:00
| -debug | Allow debugging of request/responses. | nuclei -debug |
2020-06-28 05:18:52 +00:00
| -update-templates | Download and updates nuclei templates | nuclei -update-templates |
| -update-directory | Directory for storing nuclei-templates(optional) | nuclei -update-directory templates |
| -v | Shows verbose output of all sent requests | nuclei -v |
2020-04-28 16:34:09 +00:00
| -version | Show version of nuclei | nuclei -version |
2020-06-28 05:18:52 +00:00
| -proxy-url | Proxy URL | nuclei -proxy-url hxxp://127.0.0.1:8080 |
| -proxy-socks-url | Socks proxy URL | nuclei -proxy-socks-url socks5://127.0.0.1:8080 |
| -H | Custom Header | nuclei -H "x-bug-bounty: hacker" |
2020-04-04 16:46:21 +00:00
# Installation Instructions
### From Binary
2020-04-04 16:52:00 +00:00
The installation is easy. You can download the pre-built binaries for your platform from the [Releases ](https://github.com/projectdiscovery/nuclei/releases/ ) page. Extract them using tar, move it to your `$PATH` and you're ready to go.
2020-04-04 16:46:21 +00:00
```bash
2020-08-08 08:00:07 +00:00
https://github.com/projectdiscovery/nuclei/releases
tar -xzvf nuclei-linux-amd64.tar.gz
mv nuclei /usr/local/bin/
nuclei -h
2020-04-04 16:46:21 +00:00
```
### From Source
2020-08-08 08:00:07 +00:00
nuclei requires **go1.14+** to install successfully. Run the following command to get the repo -
2020-04-04 16:46:21 +00:00
```bash
2020-07-01 10:49:38 +00:00
> GO111MODULE=on go get -u -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei
2020-04-04 16:46:21 +00:00
```
In order to update the tool, you can use -u flag with `go get` command.
2020-07-12 15:41:01 +00:00
### From Github
```bash
git clone https://github.com/projectdiscovery/nuclei.git
2020-07-13 05:11:34 +00:00
cd nuclei/v2/cmd/nuclei/
2020-07-12 15:41:01 +00:00
go build .
mv nuclei /usr/local/bin/
nuclei -h
```
2020-06-28 05:18:52 +00:00
# Nuclei templates
You can download or update the nuclei templates using `update-templates` flag.
```bash
> nuclei -update-templates
```
or download it from [nuclei templates ](https://github.com/projectdiscovery/nuclei-templates ) Github project.
```bash
> git clone https://github.com/projectdiscovery/nuclei-templates.git
```
2020-08-02 18:50:09 +00:00
**Please refer to [this guide ](https://nuclei.projectdiscovery.io/templating-guide/ ) to writing your own custom templates.**
2020-07-13 05:11:34 +00:00
2020-04-04 16:46:21 +00:00
# Running nuclei
### 1. Running nuclei with a single template.
This will run the tool against all the hosts in `urls.txt` and returns the matched results.
```bash
2020-06-28 05:26:57 +00:00
> nuclei -l urls.txt -t files/git-core.yaml -o results.txt
2020-04-04 16:46:21 +00:00
```
You can also pass the list of hosts at standard input (STDIN). This allows for easy integration in automation pipelines.
This will run the tool against all the hosts in `urls.txt` and returns the matched results.
```bash
2020-06-28 05:26:57 +00:00
> cat urls.txt | nuclei -t files/git-core.yaml -o results.txt
2020-04-04 16:46:21 +00:00
```
2020-04-04 17:06:04 +00:00
### 2. Running nuclei with multiple templates.
2020-04-04 16:46:21 +00:00
2020-04-04 17:06:04 +00:00
This will run the tool against all the hosts in `urls.txt` with all the templates in the `path-to-templates` directory and returns the matched results.
2020-04-04 16:46:21 +00:00
```bash
2020-06-28 05:26:57 +00:00
> nuclei -l urls.txt -t cves/ -o results.txt
2020-04-04 16:46:21 +00:00
```
2020-04-05 00:18:18 +00:00
### 3. Automating nuclei with subfinder and any other similar tool.
```bash
2020-06-28 05:26:57 +00:00
> subfinder -d hackerone.com -silent | httpx -silent | nuclei -t cves/ -o results.txt
2020-04-05 00:18:18 +00:00
```
2020-07-13 05:11:34 +00:00
### Running in a Docker Container
You can use the [nuclei dockerhub image ](https://hub.docker.com/r/projectdiscovery/nuclei ). Simply run -
2020-06-28 05:26:57 +00:00
2020-07-13 05:11:34 +00:00
```bash
> docker pull projectdiscovery/nuclei
```
- After downloading or building the container, run the following:
```bash
> docker run -it projectdiscovery/nuclei
```
For example, this will run the tool against all the hosts in `urls.txt` and output the results to your host file system:
```bash
> cat urls.txt | docker run -v /path-to-nuclei-templates:/go/src/app/ -i projectdiscovery/nuclei -t ./files/git-config.yaml > results.txt
```
Remember to change `/path-to-nuclei-templates` to the real path on your host file system.
-------
2020-04-04 16:46:21 +00:00
2020-04-04 19:01:40 +00:00
# Thanks
2020-04-04 16:46:21 +00:00
2020-08-08 08:00:07 +00:00
nuclei is made with 🖤 by the [projectdiscovery ](https://projectdiscovery.io ) team. Community contributions have made the project what it is. See the ** [Thanks.md ](https://github.com/projectdiscovery/nuclei/blob/master/THANKS.md )** file for more details.
Do also check out these similar awesome projects that may fit in your workflow:
2020-04-05 11:26:13 +00:00
2020-08-08 08:00:07 +00:00
- [Burp Suite ](https://portswigger.net/burp )</ br >
- [FFuF ](https://github.com/ffuf/ffuf )</ br >
- [Jaeles ](https://github.com/jaeles-project/jaeles )</ br >
- [Qsfuzz ](https://github.com/ameenmaali/qsfuzz )</ br >
- [Inception ](https://github.com/proabiral/inception )</ br >
- [Snallygaster ](https://github.com/hannob/snallygaster )</ br >
- [Gofingerprint ](https://github.com/Static-Flow/gofingerprint )</ br >
- [Sn1per ](https://github.com/1N3/Sn1per/tree/master/templates )</ br >
- [Google tsunami ](https://github.com/google/tsunami-security-scanner )</ br >
- [ChopChop ](https://github.com/michelin/ChopChop )< br >