-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add list template tags command #4798
Conversation
Thanks for this contribution @rsrdesarrollo I love this! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this feature was much needed ❤️
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- fast processing of tags to reduce load time
- output format update with sorting
- jsonl format support
cc @Ice3man543
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ ./nuclei -tgl -silent -j | head -n 10
{"tag":"cve","count":2416}
{"tag":"panel","count":1122}
{"tag":"wordpress","count":956}
{"tag":"exposure","count":895}
{"tag":"xss","count":890}
{"tag":"wp-plugin","count":836}
{"tag":"osint","count":804}
{"tag":"tech","count":673}
{"tag":"lfi","count":646}
{"tag":"misconfig","count":598}
$ ./nuclei -tgl -silent | head -n 10
cve (2416)
panel (1122)
wordpress (956)
exposure (895)
xss (890)
wp-plugin (836)
osint (804)
tech (673)
lfi (646)
misconfig (598)
Proposed changes
Add CLI flag '-tgl' to list all the tags available on the templates (similar to -tl but for tags instead of templates)
Checklist