OWASP Top 10 Attack and Nuclei Scan Details Reports #2646
-
I recently downloaded latest version(2.7.7) of nuclei with Nuclei Templates 9.2.1, I have following questions:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Have you checked out the documentation at https://nuclei.projectdiscovery.io/ or the CLI help?
We haven't categorized our templates in that way, hence the short answer is that you can't, BUT you can control which ones to execute based on their tags. E.g.
Interactsh is a service which integrates seamlessly with nuclei to enable blind OOB testing (e.g. detecting SSRF). It either requires internet access or you need to deploy your own instance. For more info check out the https://github.com/projectdiscovery/interactsh project.
Nuclei tests the given input (usually root domains) for specific vulnerabilities. It doesn't do fully automated crawling or fuzzing YET. Those are separate projects which aren't released publicly yet and will be integrated later on. The power of
Please read the documentation: https://nuclei.projectdiscovery.io/nuclei/get-started/#nuclei-reporting Integration with other ProjectDiscovery tools: If you would like additional details, you can ask them at our Discord channel. |
Beta Was this translation helpful? Give feedback.
-
If anyone needs to convert nuclei's JSON output to CSV, I wrote this little tool in Python. |
Beta Was this translation helpful? Give feedback.
Have you checked out the documentation at https://nuclei.projectdiscovery.io/ or the CLI help?
We haven't categorized our templates in that way, hence the short answer is that you can't, BUT you can control which ones to execute based on their tags.
E.g.
nuclei -tags xss,sqli -vv
<- this will show you all the templates that do xss or sql injection testsInteractsh is a service which integrates seamlessly with nuclei to enable blind OOB …