updating examples

dev
bauthard 2020-04-05 05:48:18 +05:30 committed by GitHub
parent 4004cc9a90
commit 1941f87f86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -110,6 +110,13 @@ This will run the tool against all the hosts in `urls.txt` with all the template
> nuclei -l urls.txt -t "path-to-templates/*.yaml" -o results.txt
```
### 3. Automating nuclei with subfinder and any other similar tool.
```bash
> subfinder -d hackerone.com | httprob | nuclei -t "path-to-templates/*.yaml" -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.