Update README.md

This commit is contained in:
bauthard 2020-06-28 10:56:57 +05:30 committed by GitHub
parent cbe818537e
commit 7c84e30f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ or download it from [nuclei templates](https://github.com/projectdiscovery/nucle
This will run the tool against all the hosts in `urls.txt` and returns the matched results.
```bash
> nuclei -l urls.txt -t git-core.yaml -o results.txt
> nuclei -l urls.txt -t files/git-core.yaml -o results.txt
```
You can also pass the list of hosts at standard input (STDIN). This allows for easy integration in automation pipelines.
@ -142,7 +142,7 @@ You can also pass the list of hosts at standard input (STDIN). This allows for e
This will run the tool against all the hosts in `urls.txt` and returns the matched results.
```bash
> cat urls.txt | nuclei -t git-core.yaml -o results.txt
> cat urls.txt | nuclei -t files/git-core.yaml -o results.txt
```
### 2. Running nuclei with multiple templates.
@ -150,17 +150,19 @@ This will run the tool against all the hosts in `urls.txt` and returns the match
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.
```bash
> nuclei -l urls.txt -t nuclei-templates/cves/ -o results.txt
> nuclei -l urls.txt -t cves/ -o results.txt
```
### 3. Automating nuclei with subfinder and any other similar tool.
```bash
> subfinder -d hackerone.com -silent | httpx -silent | nuclei -t nuclei-templates/cves/ -o results.txt
> subfinder -d hackerone.com -silent | httpx -silent | nuclei -t cves/ -o results.txt
```
Nuclei supports glob expression ending in `.yaml` meaning multiple templates can be easily passed to be executed one after the other. Please refer to [this guide](https://github.com/projectdiscovery/nuclei-templates/blob/master/GUIDE.md) to build your own custom templates.
-------
**Please refer to [this guide](https://github.com/projectdiscovery/nuclei-templates/blob/master/GUIDE.md) to build your own custom templates.**
# Thanks