nuclei v2.7.3 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.7.3
- Fixed bug in templates with
req-condition
producing random invalid matches by @Ice3man543 in #2195 - Fixed bug in matchers numbering in templates with
req-condition
by @parrasajad in #2135 - Fixed bug with
-H
flag truncating values after comma by @LuitelSamikshya in #2133 - Fixed nil operator crash in request clustering by @parrasajad in #2173
- Fixed debug output file permissions by @jimen0 in #2187
- Fixed bug in network template producing invalid error message by @Mzack9999 in #2137
- Added http request validation at compile time by @Mzack9999 in #2193
- Added self diagnostic functionality (
-health-check
) by @Mzack9999 in #2178 - Added
join
andhmac
helper function by @jturner in #2055 - Consolidated
date
,time
,time_to_string
intodate_time
helper function by @forgedhallpass in #2055
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