Tag Listing Not Working #6937
Replies: 3 comments
-
|
The Workaround solutions:
nuclei -tgl | cat
nuclei -tgl > tags.txt && cat tags.txt
nuclei -tgl -jsonl
# Linux/macOS
grep -rh "tags:" ~/nuclei-templates/ | tr ',' '\n' | sort -u
# Or use nuclei's template list with tag filter
nuclei -tl -tags cve | head -20The reason This appears to be a regression in v3.7.0's output handling. If the workarounds above don't help, consider filing a bug report with the exact terminal/shell you're using (cmd, powershell, bash, etc.) — that info helps the team reproduce it. |
Beta Was this translation helpful? Give feedback.
-
|
The Workaround solutions:
nuclei -tgl | cat
nuclei -tgl > tags.txt && cat tags.txt
nuclei -tgl -jsonl
# Linux/macOS
grep -rh "tags:" ~/nuclei-templates/ | tr ',' '\n' | sort -u
# Or use nuclei's template list with tag filter
nuclei -tl -tags cve | head -20The reason This appears to be a regression in v3.7.0's output handling. If the workarounds above don't help, consider filing a bug report with the exact terminal/shell you're using (cmd, powershell, bash, etc.) — that info helps the team reproduce it. |
Beta Was this translation helpful? Give feedback.
-
|
The Workarounds:
nuclei -tgl 2>&1 | tee tags.txt
nuclei -tgl -jsonl
grep -rh "tags:" ~/nuclei-templates/ | tr ',' '\n' | sed 's/.*tags: *//' | sort -u
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@v3.3.7This looks like a regression — the tag listing output is being captured by the stats/progress display. Adding |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
-tglis not working without-debughow to fix itNuclei:
v3.7.0Template Version:
v10.3.9Go version:
go1.24.13 linux/amd64Beta Was this translation helpful? Give feedback.
All reactions