nuclei v2.9.6 releases: fast tool for configurable targeted scanning
nuclei
Nuclei is a fast tool for configurable targeted scanning based on templates offering massive extensibility and ease of use.
It 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 the initial reconnaissance phase to quickly check for low-hanging fruits or CVEs across targets that are known and easily detectable. It uses a retryablehttp-go library designed to handle various errors and retries in case of blocking by WAFs, this is also one of our core modules from custom-queries.
Feature
- Simple and modular codebase making it easy to contribute.
- Fast And fully configurable using a template-based engine.
- Handles edge cases doing retries, backoffs, etc for handling WAFs.
- Smart matching functionality for zero false-positive scanning.
Changelog v2.9.6
- Fixed issue with uncover config loader by @tarunKoyalwar in #3773
- Fixed issue with template update option by @tarunKoyalwar in #3769
- Fixed typo by @kchason in #3760
- Updated TCP protocol by @Mzack9999 in #3546
Use
1. Running nuclei with a single template.
This will run the tool against all the hosts in urls.txt and returns the matched results.
> nuclei -l urls.txt -t 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.
This will run the tool against all the hosts in urls.txt and returns the matched results.
> cat urls.txt | nuclei -t git-core.yaml -o results.txt
2. Running nuclei with multiple templates.
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.
> nuclei -l urls.txt -t "path-to-templates/*.yaml" -o results.txt
3. Automating nuclei with subfinder and any other similar tool.
> 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 to build your own custom templates.
Download
Copyright (c) 2020 Exposed Atoms