Python web fuzzer — flexible payload positioning, encoder support, custom payload generators. ffuf's old-guard predecessor.
Installation
Pick the install method that matches your stack. The Docker option is the cleanest for one-off scans where you don’t want to pollute your workstation.
pipx
pipx install wfuzz
Linux (apt)
sudo apt install wfuzz
Core commands
The handful of invocations you’ll actually run on 90% of engagements:
Directory bust
wfuzz -c -z file,wordlist.txt --hc 404 https://target.com/FUZZ
Parameter discovery
wfuzz -c -z file,params.txt --hc 404 "https://target.com/api?FUZZ=test"
Multiple payloads
wfuzz -c -z file,users.txt -z file,passwords.txt --hc 401 "https://target.com/login?u=FUZZ&p=FUZ2Z"
POST data
wfuzz -c -z file,sqli.txt -d "id=FUZZ" --hc 500 https://target.com/page
Filter by content
wfuzz -c -z file,wordlist.txt --ss "Welcome" https://target.com/FUZZ
Performance optimisation
What separates a junior who runs the default invocation from a practitioner who knows the knobs:
-t 20threads (default 10). Bump for raw speed; slower than ffuf at any setting.--hchide codes,--hlhide lines,--hhhide chars — combine for noise reduction.--ssshow-on-string,--slshow-on-line-count — positive filters easier than negative.-Zstops on errors — combine with-wretry-after.
Common pitfalls
Real failure modes that bite people on engagements. Most are recoverable; a few are reputation-damaging.
- Python startup overhead means it’s slower than ffuf for large wordlists — same number of requests, longer runtime.
- Default UA “Wfuzz” is widely blocked. Set
-H "User-Agent: Mozilla/5.0...". - Less actively developed than ffuf — consider using ffuf for new projects.
Modern alternatives in 2026
The ecosystem moves fast. These are tools you should at least be aware of:
- ffuf — Go, much faster.
- feroxbuster — Rust, recursive.
India context and engagement notes
Wfuzz is still useful for complex multi-payload positioning and custom encoders. For straight directory busting in 2026, use ffuf. Wfuzz when you need to chain encoders or multi-position cluster bombs.
⚖️ Legal: Use only on systems you own or have explicit written authorisation to test. In India, unauthorised access is punishable under Section 66 of the IT Act, 2000 (up to 3 years imprisonment + fine). Pair every engagement with a signed Statement of Work or Rules of Engagement before running anything from this page.
Custom team training + practitioner advisory
Beyond the free academy — we run private workshops, vCISO advisory, and red-team exercises tailored to your stack. For Indian SMBs scaling past their first hire.