TGViewer
#bugbountytips #bugbountytips @bughuntertips · 3.07K subscribers
Post #561 2.56K
Not many know this: nuclei's param fuzzing skips a parameter after the first 10 payloads that return nothing.
So if the initial 10 tries don't trigger anything, that parameter gets ignored and you might miss interesting cases.

How to fix it: use -fuzz-param-frequency. It controls how many "uninteresting" payloads are allowed before nuclei skips a parameter (default is 10).

nuclei -h | grep frequency

...
-fuzz-param-frequency int frequency of uninteresting parameters for fuzzing before skipping (default 10)


An example of an automated pipeline (katana + nuclei) for fuzzing:

katana -u http://testphp.vulnweb.com -aff -iqp -j -o katana.jsonl && \
nuclei -l katana.jsonl -im jsonl -dast -fuzz-param-frequency 10000


Why this matters:

• Some endpoints only respond on later payloads (rate-limited, WAF behavior, timing issues).
• Increasing the frequency prevents skipping noisy-but-interesting params.
• Use with care — raising it a lot increases runtime and requests.

#bugbountytips
  • ❤ 4
  • 👍 1
More from @bughuntertips
  1. Jan 7, 2026🔍 SwaggerSpy: Automated OSINT for API Intelligence Looking for exposed secrets in API doc…
  2. Dec 23, 2025🔍 Quick Win: Git Exposure → Secret Hunting 🔥 Step 1: Mass Git Config Hunt nuclei -l aliv…
  3. Dec 16, 2025Want to report a scanner finding, but feel like writing it up is too tedious? 😅 Install t…
  4. Dec 5, 2025If you need to generate a target-specific wordlist, make sure to check out GAP extension.…
  5. Dec 4, 2025Cloudflare has recently started blocking proxy tools such as Burp Suite by detecting their…
  6. Nov 9, 2025If you found a package.json file in the wild, you might find some internal packages vulner…
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →