[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-ffuf-web-fuzzing":3,"mdc--rpokv5-key":34,"related-org-trail-of-bits-ffuf-web-fuzzing":1601,"related-repo-trail-of-bits-ffuf-web-fuzzing":1757},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"ffuf-web-fuzzing","perform web fuzzing with ffuf","Expert guidance for ffuf web fuzzing during authorized penetration testing. Covers directory discovery, subdomain enumeration, parameter fuzzing, authenticated fuzzing with raw requests, auto-calibration, and result analysis. Use when running ffuf scans, analyzing ffuf output, or building fuzzing strategies for web targets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17,20],{"name":14,"slug":15,"type":16},"Security","security","tag",{"name":18,"slug":19,"type":16},"Code Analysis","code-analysis",{"name":21,"slug":22,"type":16},"Testing","testing",460,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated","2026-07-17T06:05:08.247908",null,29,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Curated, community-vetted Claude Code plugin marketplace","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated\u002Ftree\u002FHEAD\u002Fplugins\u002Fffuf-web-fuzzing\u002Fskills\u002Fffuf-web-fuzzing","---\nname: ffuf-web-fuzzing\ndescription: >-\n  Expert guidance for ffuf web fuzzing during authorized penetration testing.\n  Covers directory discovery, subdomain enumeration, parameter fuzzing,\n  authenticated fuzzing with raw requests, auto-calibration, and result\n  analysis. Use when running ffuf scans, analyzing ffuf output, or building\n  fuzzing strategies for web targets.\nallowed-tools:\n  - Bash\n  - Read\n  - Write\n  - Edit\n  - Grep\n  - Glob\n---\n\n# FFUF Web Fuzzing\n\nGuidance for using ffuf (Fuzz Faster U Fool) effectively during authorized penetration testing.\n\n## Prerequisites\n\nffuf must be installed: `brew install ffuf` (macOS) or `go install github.com\u002Fffuf\u002Fffuf\u002Fv2@latest`\n\n## When to Use\n\n- Running directory, file, or subdomain discovery against web targets\n- Fuzzing API endpoints, parameters, or POST data\n- Authenticated fuzzing with raw HTTP requests\n- Analyzing ffuf JSON output for anomalies and interesting findings\n- Building fuzzing strategies (wordlist selection, filtering, rate limiting)\n- IDOR testing with authenticated sessions\n\n## When NOT to Use\n\n- Target system is not in scope or authorization is unclear\n- Passive reconnaissance is more appropriate (use OSINT tools instead)\n- The target is a production system and rate limiting hasn't been configured\n- You need a full vulnerability scanner (use Burp Suite, Nuclei, etc.)\n- Testing for logic flaws that require multi-step interaction\n\n## Rationalizations to Reject\n\n- \"Auto-calibration is optional\" -- `-ac` is mandatory. Without it, results are buried in false positives and analysis is wasted effort.\n- \"More threads = faster results\" -- Hammering a target with `-t 200` triggers WAFs, gets you blocked, and may crash staging environments. Start with `-t 10 -rate 2` for production targets.\n- \"I'll filter later\" -- Set up filtering before the scan. Running a 220k wordlist without filters and then trying to grep through the noise is backwards.\n- \"The default wordlist is fine\" -- Wordlist selection is the most important decision. A generic wordlist misses technology-specific paths. See [references\u002Fwordlists.md](references\u002Fwordlists.md).\n- \"Raw requests are too much work\" -- For authenticated fuzzing, `--request req.txt` is simpler and more reliable than chaining `-H` and `-b` flags. Capture once, fuzz many times.\n\n## Critical Rules\n\n1. **Always use `-ac`** (auto-calibration) unless you have a specific, documented reason not to\n2. **Always save output** with `-o results.json` for later analysis\n3. **Rate limit production targets** with `-rate` and `-t` flags\n4. **Use `--request` for auth** -- raw request files beat command-line header chains\n5. **Confirm authorization first** -- before running any scan, verify the user has written permission for the target. Ask if unclear.\n\n## Core Concepts\n\n### The FUZZ Keyword\n\n```bash\n# In URL path\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ac\n\n# In headers\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com -H \"Host: FUZZ.target.com\" -ac\n\n# In POST body\nffuf -w wordlist.txt -X POST -d \"user=admin&pass=FUZZ\" -u https:\u002F\u002Ftarget.com\u002Flogin -ac\n\n# Multiple positions with custom keywords\nffuf -w endpoints.txt:EP -w ids.txt:ID -u https:\u002F\u002Ftarget.com\u002FEP\u002FID -mode pitchfork -ac\n```\n\n### Auto-Calibration\n\n`-ac` automatically detects and filters repetitive false-positive responses. It adapts to the target's specific behavior and removes noise from dynamic content.\n\n```bash\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ac        # Standard\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ach       # Per-host (multi-host scans)\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -acc \"404\" # Custom calibration string\n```\n\n## Common Patterns\n\n### Directory Discovery\n\n```bash\nffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fraft-large-directories.txt \\\n     -u https:\u002F\u002Ftarget.com\u002FFUZZ -e .php,.html,.txt,.bak \\\n     -ac -c -v -o results.json\n```\n\n### Subdomain Enumeration\n\n```bash\nffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FDNS\u002Fsubdomains-top1million-5000.txt \\\n     -u https:\u002F\u002FFUZZ.target.com -ac -c -v -o results.json\n```\n\n### API Endpoint Discovery\n\n```bash\nffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fapi\u002Fapi-endpoints.txt \\\n     -u https:\u002F\u002Fapi.target.com\u002Fv1\u002FFUZZ \\\n     -H \"Authorization: Bearer YOUR_TOKEN_HERE\" -mc 200,201 -ac -c\n```\n\n### Authenticated Fuzzing with Raw Requests\n\nCapture a full authenticated request, save to `req.txt`, insert `FUZZ`:\n\n```http\nPOST \u002Fapi\u002Fv1\u002Fusers\u002FFUZZ HTTP\u002F1.1\nHost: target.com\nAuthorization: Bearer YOUR_TOKEN_HERE\nCookie: session=YOUR_SESSION_ID\nContent-Type: application\u002Fjson\n\n{\"action\":\"view\",\"id\":\"1\"}\n```\n\n```bash\nffuf --request req.txt -w wordlist.txt -ac -o results.json\n```\n\nSee [references\u002Frequest-templates.md](references\u002Frequest-templates.md) for pre-built templates covering bearer tokens, session cookies, API keys, and GraphQL.\n\n### Authenticated Fuzzing: Agent Workflow\n\nAuthenticated fuzzing requires real credentials that the agent cannot obtain independently. When the user asks for authenticated fuzzing:\n\n1. Ask the user to provide ONE of:\n   - A raw HTTP request file (`req.txt`) with auth headers already included\n   - A curl command from browser DevTools (convert it to `req.txt` format)\n   - Individual credentials (Bearer token, session cookie, API key)\n2. If given a curl command, convert it to raw HTTP request format and write to `req.txt`\n3. If given individual credentials, use a template from [references\u002Frequest-templates.md](references\u002Frequest-templates.md) and substitute real values\n4. Never fabricate or guess authentication tokens\n\n### IDOR Testing\n\n```bash\nffuf --request req.txt -w \u003C(seq 1 10000) -ac -mc 200 -o idor_results.json\n```\n\n## Rate Limiting\n\n| Environment | Flags | Notes |\n|-------------|-------|-------|\n| Production (stealth) | `-rate 2 -t 10` | Avoid WAF triggers |\n| Production (normal) | `-rate 10 -t 20` | Balanced |\n| Staging\u002FDev | `-rate 50 -t 40` | Faster |\n| Local\u002FLab | No limit, `-t 100` | Maximum speed |\n\n## Analyzing Results\n\nSave output as JSON (`-o results.json`), then read the file and focus on:\n\n- **Anomalous status codes** -- anything other than the baseline 404\u002F403\n- **Size outliers** -- responses significantly larger or smaller than average\n- **Interesting keywords** in URLs -- admin, api, backup, config, .git, .env\n- **Timing anomalies** -- slow responses may indicate SQL injection or heavy processing\n- **Follow-up targets** -- interesting findings warrant deeper fuzzing\n\nUse `-fs` to filter by response size and `-fc` to filter by status code when auto-calibration isn't sufficient. Run `ffuf -h` for the full list of match\u002Ffilter flags.\n\n## References\n\n- [Wordlist selection guide](references\u002Fwordlists.md) -- recommended SecLists by scenario\n- [Authenticated request templates](references\u002Frequest-templates.md) -- pre-built req.txt for bearer tokens, cookies, API keys\n- [ffuf official docs](https:\u002F\u002Fgithub.com\u002Fffuf\u002Fffuf\u002Fwiki)\n- [SecLists](https:\u002F\u002Fgithub.com\u002Fdanielmiessler\u002FSecLists)\n",{"data":35,"body":43},{"name":4,"description":6,"allowed-tools":36},[37,38,39,40,41,42],"Bash","Read","Write","Edit","Grep","Glob",{"type":44,"children":45},"root",[46,54,60,67,87,93,128,134,162,168,252,258,348,354,361,629,635,645,764,770,776,859,865,924,930,1013,1019,1040,1104,1148,1160,1166,1171,1237,1243,1317,1323,1446,1452,1464,1517,1545,1551,1595],{"type":47,"tag":48,"props":49,"children":50},"element","h1",{"id":4},[51],{"type":52,"value":53},"text","FFUF Web Fuzzing",{"type":47,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"Guidance for using ffuf (Fuzz Faster U Fool) effectively during authorized penetration testing.",{"type":47,"tag":61,"props":62,"children":64},"h2",{"id":63},"prerequisites",[65],{"type":52,"value":66},"Prerequisites",{"type":47,"tag":55,"props":68,"children":69},{},[70,72,79,81],{"type":52,"value":71},"ffuf must be installed: ",{"type":47,"tag":73,"props":74,"children":76},"code",{"className":75},[],[77],{"type":52,"value":78},"brew install ffuf",{"type":52,"value":80}," (macOS) or ",{"type":47,"tag":73,"props":82,"children":84},{"className":83},[],[85],{"type":52,"value":86},"go install github.com\u002Fffuf\u002Fffuf\u002Fv2@latest",{"type":47,"tag":61,"props":88,"children":90},{"id":89},"when-to-use",[91],{"type":52,"value":92},"When to Use",{"type":47,"tag":94,"props":95,"children":96},"ul",{},[97,103,108,113,118,123],{"type":47,"tag":98,"props":99,"children":100},"li",{},[101],{"type":52,"value":102},"Running directory, file, or subdomain discovery against web targets",{"type":47,"tag":98,"props":104,"children":105},{},[106],{"type":52,"value":107},"Fuzzing API endpoints, parameters, or POST data",{"type":47,"tag":98,"props":109,"children":110},{},[111],{"type":52,"value":112},"Authenticated fuzzing with raw HTTP requests",{"type":47,"tag":98,"props":114,"children":115},{},[116],{"type":52,"value":117},"Analyzing ffuf JSON output for anomalies and interesting findings",{"type":47,"tag":98,"props":119,"children":120},{},[121],{"type":52,"value":122},"Building fuzzing strategies (wordlist selection, filtering, rate limiting)",{"type":47,"tag":98,"props":124,"children":125},{},[126],{"type":52,"value":127},"IDOR testing with authenticated sessions",{"type":47,"tag":61,"props":129,"children":131},{"id":130},"when-not-to-use",[132],{"type":52,"value":133},"When NOT to Use",{"type":47,"tag":94,"props":135,"children":136},{},[137,142,147,152,157],{"type":47,"tag":98,"props":138,"children":139},{},[140],{"type":52,"value":141},"Target system is not in scope or authorization is unclear",{"type":47,"tag":98,"props":143,"children":144},{},[145],{"type":52,"value":146},"Passive reconnaissance is more appropriate (use OSINT tools instead)",{"type":47,"tag":98,"props":148,"children":149},{},[150],{"type":52,"value":151},"The target is a production system and rate limiting hasn't been configured",{"type":47,"tag":98,"props":153,"children":154},{},[155],{"type":52,"value":156},"You need a full vulnerability scanner (use Burp Suite, Nuclei, etc.)",{"type":47,"tag":98,"props":158,"children":159},{},[160],{"type":52,"value":161},"Testing for logic flaws that require multi-step interaction",{"type":47,"tag":61,"props":163,"children":165},{"id":164},"rationalizations-to-reject",[166],{"type":52,"value":167},"Rationalizations to Reject",{"type":47,"tag":94,"props":169,"children":170},{},[171,184,205,210,223],{"type":47,"tag":98,"props":172,"children":173},{},[174,176,182],{"type":52,"value":175},"\"Auto-calibration is optional\" -- ",{"type":47,"tag":73,"props":177,"children":179},{"className":178},[],[180],{"type":52,"value":181},"-ac",{"type":52,"value":183}," is mandatory. Without it, results are buried in false positives and analysis is wasted effort.",{"type":47,"tag":98,"props":185,"children":186},{},[187,189,195,197,203],{"type":52,"value":188},"\"More threads = faster results\" -- Hammering a target with ",{"type":47,"tag":73,"props":190,"children":192},{"className":191},[],[193],{"type":52,"value":194},"-t 200",{"type":52,"value":196}," triggers WAFs, gets you blocked, and may crash staging environments. Start with ",{"type":47,"tag":73,"props":198,"children":200},{"className":199},[],[201],{"type":52,"value":202},"-t 10 -rate 2",{"type":52,"value":204}," for production targets.",{"type":47,"tag":98,"props":206,"children":207},{},[208],{"type":52,"value":209},"\"I'll filter later\" -- Set up filtering before the scan. Running a 220k wordlist without filters and then trying to grep through the noise is backwards.",{"type":47,"tag":98,"props":211,"children":212},{},[213,215,221],{"type":52,"value":214},"\"The default wordlist is fine\" -- Wordlist selection is the most important decision. A generic wordlist misses technology-specific paths. See ",{"type":47,"tag":216,"props":217,"children":219},"a",{"href":218},"references\u002Fwordlists.md",[220],{"type":52,"value":218},{"type":52,"value":222},".",{"type":47,"tag":98,"props":224,"children":225},{},[226,228,234,236,242,244,250],{"type":52,"value":227},"\"Raw requests are too much work\" -- For authenticated fuzzing, ",{"type":47,"tag":73,"props":229,"children":231},{"className":230},[],[232],{"type":52,"value":233},"--request req.txt",{"type":52,"value":235}," is simpler and more reliable than chaining ",{"type":47,"tag":73,"props":237,"children":239},{"className":238},[],[240],{"type":52,"value":241},"-H",{"type":52,"value":243}," and ",{"type":47,"tag":73,"props":245,"children":247},{"className":246},[],[248],{"type":52,"value":249},"-b",{"type":52,"value":251}," flags. Capture once, fuzz many times.",{"type":47,"tag":61,"props":253,"children":255},{"id":254},"critical-rules",[256],{"type":52,"value":257},"Critical Rules",{"type":47,"tag":259,"props":260,"children":261},"ol",{},[262,278,296,320,338],{"type":47,"tag":98,"props":263,"children":264},{},[265,276],{"type":47,"tag":266,"props":267,"children":268},"strong",{},[269,271],{"type":52,"value":270},"Always use ",{"type":47,"tag":73,"props":272,"children":274},{"className":273},[],[275],{"type":52,"value":181},{"type":52,"value":277}," (auto-calibration) unless you have a specific, documented reason not to",{"type":47,"tag":98,"props":279,"children":280},{},[281,286,288,294],{"type":47,"tag":266,"props":282,"children":283},{},[284],{"type":52,"value":285},"Always save output",{"type":52,"value":287}," with ",{"type":47,"tag":73,"props":289,"children":291},{"className":290},[],[292],{"type":52,"value":293},"-o results.json",{"type":52,"value":295}," for later analysis",{"type":47,"tag":98,"props":297,"children":298},{},[299,304,305,311,312,318],{"type":47,"tag":266,"props":300,"children":301},{},[302],{"type":52,"value":303},"Rate limit production targets",{"type":52,"value":287},{"type":47,"tag":73,"props":306,"children":308},{"className":307},[],[309],{"type":52,"value":310},"-rate",{"type":52,"value":243},{"type":47,"tag":73,"props":313,"children":315},{"className":314},[],[316],{"type":52,"value":317},"-t",{"type":52,"value":319}," flags",{"type":47,"tag":98,"props":321,"children":322},{},[323,336],{"type":47,"tag":266,"props":324,"children":325},{},[326,328,334],{"type":52,"value":327},"Use ",{"type":47,"tag":73,"props":329,"children":331},{"className":330},[],[332],{"type":52,"value":333},"--request",{"type":52,"value":335}," for auth",{"type":52,"value":337}," -- raw request files beat command-line header chains",{"type":47,"tag":98,"props":339,"children":340},{},[341,346],{"type":47,"tag":266,"props":342,"children":343},{},[344],{"type":52,"value":345},"Confirm authorization first",{"type":52,"value":347}," -- before running any scan, verify the user has written permission for the target. Ask if unclear.",{"type":47,"tag":61,"props":349,"children":351},{"id":350},"core-concepts",[352],{"type":52,"value":353},"Core Concepts",{"type":47,"tag":355,"props":356,"children":358},"h3",{"id":357},"the-fuzz-keyword",[359],{"type":52,"value":360},"The FUZZ Keyword",{"type":47,"tag":362,"props":363,"children":368},"pre",{"className":364,"code":365,"language":366,"meta":367,"style":367},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# In URL path\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ac\n\n# In headers\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com -H \"Host: FUZZ.target.com\" -ac\n\n# In POST body\nffuf -w wordlist.txt -X POST -d \"user=admin&pass=FUZZ\" -u https:\u002F\u002Ftarget.com\u002Flogin -ac\n\n# Multiple positions with custom keywords\nffuf -w endpoints.txt:EP -w ids.txt:ID -u https:\u002F\u002Ftarget.com\u002FEP\u002FID -mode pitchfork -ac\n","bash","",[369],{"type":47,"tag":73,"props":370,"children":371},{"__ignoreMap":367},[372,384,420,430,439,489,497,506,563,571,580],{"type":47,"tag":373,"props":374,"children":377},"span",{"class":375,"line":376},"line",1,[378],{"type":47,"tag":373,"props":379,"children":381},{"style":380},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[382],{"type":52,"value":383},"# In URL path\n",{"type":47,"tag":373,"props":385,"children":387},{"class":375,"line":386},2,[388,394,400,405,410,415],{"type":47,"tag":373,"props":389,"children":391},{"style":390},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[392],{"type":52,"value":393},"ffuf",{"type":47,"tag":373,"props":395,"children":397},{"style":396},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[398],{"type":52,"value":399}," -w",{"type":47,"tag":373,"props":401,"children":402},{"style":396},[403],{"type":52,"value":404}," wordlist.txt",{"type":47,"tag":373,"props":406,"children":407},{"style":396},[408],{"type":52,"value":409}," -u",{"type":47,"tag":373,"props":411,"children":412},{"style":396},[413],{"type":52,"value":414}," https:\u002F\u002Ftarget.com\u002FFUZZ",{"type":47,"tag":373,"props":416,"children":417},{"style":396},[418],{"type":52,"value":419}," -ac\n",{"type":47,"tag":373,"props":421,"children":423},{"class":375,"line":422},3,[424],{"type":47,"tag":373,"props":425,"children":427},{"emptyLinePlaceholder":426},true,[428],{"type":52,"value":429},"\n",{"type":47,"tag":373,"props":431,"children":433},{"class":375,"line":432},4,[434],{"type":47,"tag":373,"props":435,"children":436},{"style":380},[437],{"type":52,"value":438},"# In headers\n",{"type":47,"tag":373,"props":440,"children":442},{"class":375,"line":441},5,[443,447,451,455,459,464,469,475,480,485],{"type":47,"tag":373,"props":444,"children":445},{"style":390},[446],{"type":52,"value":393},{"type":47,"tag":373,"props":448,"children":449},{"style":396},[450],{"type":52,"value":399},{"type":47,"tag":373,"props":452,"children":453},{"style":396},[454],{"type":52,"value":404},{"type":47,"tag":373,"props":456,"children":457},{"style":396},[458],{"type":52,"value":409},{"type":47,"tag":373,"props":460,"children":461},{"style":396},[462],{"type":52,"value":463}," https:\u002F\u002Ftarget.com",{"type":47,"tag":373,"props":465,"children":466},{"style":396},[467],{"type":52,"value":468}," -H",{"type":47,"tag":373,"props":470,"children":472},{"style":471},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[473],{"type":52,"value":474}," \"",{"type":47,"tag":373,"props":476,"children":477},{"style":396},[478],{"type":52,"value":479},"Host: FUZZ.target.com",{"type":47,"tag":373,"props":481,"children":482},{"style":471},[483],{"type":52,"value":484},"\"",{"type":47,"tag":373,"props":486,"children":487},{"style":396},[488],{"type":52,"value":419},{"type":47,"tag":373,"props":490,"children":492},{"class":375,"line":491},6,[493],{"type":47,"tag":373,"props":494,"children":495},{"emptyLinePlaceholder":426},[496],{"type":52,"value":429},{"type":47,"tag":373,"props":498,"children":500},{"class":375,"line":499},7,[501],{"type":47,"tag":373,"props":502,"children":503},{"style":380},[504],{"type":52,"value":505},"# In POST body\n",{"type":47,"tag":373,"props":507,"children":509},{"class":375,"line":508},8,[510,514,518,522,527,532,537,541,546,550,554,559],{"type":47,"tag":373,"props":511,"children":512},{"style":390},[513],{"type":52,"value":393},{"type":47,"tag":373,"props":515,"children":516},{"style":396},[517],{"type":52,"value":399},{"type":47,"tag":373,"props":519,"children":520},{"style":396},[521],{"type":52,"value":404},{"type":47,"tag":373,"props":523,"children":524},{"style":396},[525],{"type":52,"value":526}," -X",{"type":47,"tag":373,"props":528,"children":529},{"style":396},[530],{"type":52,"value":531}," POST",{"type":47,"tag":373,"props":533,"children":534},{"style":396},[535],{"type":52,"value":536}," -d",{"type":47,"tag":373,"props":538,"children":539},{"style":471},[540],{"type":52,"value":474},{"type":47,"tag":373,"props":542,"children":543},{"style":396},[544],{"type":52,"value":545},"user=admin&pass=FUZZ",{"type":47,"tag":373,"props":547,"children":548},{"style":471},[549],{"type":52,"value":484},{"type":47,"tag":373,"props":551,"children":552},{"style":396},[553],{"type":52,"value":409},{"type":47,"tag":373,"props":555,"children":556},{"style":396},[557],{"type":52,"value":558}," https:\u002F\u002Ftarget.com\u002Flogin",{"type":47,"tag":373,"props":560,"children":561},{"style":396},[562],{"type":52,"value":419},{"type":47,"tag":373,"props":564,"children":566},{"class":375,"line":565},9,[567],{"type":47,"tag":373,"props":568,"children":569},{"emptyLinePlaceholder":426},[570],{"type":52,"value":429},{"type":47,"tag":373,"props":572,"children":574},{"class":375,"line":573},10,[575],{"type":47,"tag":373,"props":576,"children":577},{"style":380},[578],{"type":52,"value":579},"# Multiple positions with custom keywords\n",{"type":47,"tag":373,"props":581,"children":583},{"class":375,"line":582},11,[584,588,592,597,601,606,610,615,620,625],{"type":47,"tag":373,"props":585,"children":586},{"style":390},[587],{"type":52,"value":393},{"type":47,"tag":373,"props":589,"children":590},{"style":396},[591],{"type":52,"value":399},{"type":47,"tag":373,"props":593,"children":594},{"style":396},[595],{"type":52,"value":596}," endpoints.txt:EP",{"type":47,"tag":373,"props":598,"children":599},{"style":396},[600],{"type":52,"value":399},{"type":47,"tag":373,"props":602,"children":603},{"style":396},[604],{"type":52,"value":605}," ids.txt:ID",{"type":47,"tag":373,"props":607,"children":608},{"style":396},[609],{"type":52,"value":409},{"type":47,"tag":373,"props":611,"children":612},{"style":396},[613],{"type":52,"value":614}," https:\u002F\u002Ftarget.com\u002FEP\u002FID",{"type":47,"tag":373,"props":616,"children":617},{"style":396},[618],{"type":52,"value":619}," -mode",{"type":47,"tag":373,"props":621,"children":622},{"style":396},[623],{"type":52,"value":624}," pitchfork",{"type":47,"tag":373,"props":626,"children":627},{"style":396},[628],{"type":52,"value":419},{"type":47,"tag":355,"props":630,"children":632},{"id":631},"auto-calibration",[633],{"type":52,"value":634},"Auto-Calibration",{"type":47,"tag":55,"props":636,"children":637},{},[638,643],{"type":47,"tag":73,"props":639,"children":641},{"className":640},[],[642],{"type":52,"value":181},{"type":52,"value":644}," automatically detects and filters repetitive false-positive responses. It adapts to the target's specific behavior and removes noise from dynamic content.",{"type":47,"tag":362,"props":646,"children":648},{"className":364,"code":647,"language":366,"meta":367,"style":367},"ffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ac        # Standard\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -ach       # Per-host (multi-host scans)\nffuf -w wordlist.txt -u https:\u002F\u002Ftarget.com\u002FFUZZ -acc \"404\" # Custom calibration string\n",[649],{"type":47,"tag":73,"props":650,"children":651},{"__ignoreMap":367},[652,685,718],{"type":47,"tag":373,"props":653,"children":654},{"class":375,"line":376},[655,659,663,667,671,675,680],{"type":47,"tag":373,"props":656,"children":657},{"style":390},[658],{"type":52,"value":393},{"type":47,"tag":373,"props":660,"children":661},{"style":396},[662],{"type":52,"value":399},{"type":47,"tag":373,"props":664,"children":665},{"style":396},[666],{"type":52,"value":404},{"type":47,"tag":373,"props":668,"children":669},{"style":396},[670],{"type":52,"value":409},{"type":47,"tag":373,"props":672,"children":673},{"style":396},[674],{"type":52,"value":414},{"type":47,"tag":373,"props":676,"children":677},{"style":396},[678],{"type":52,"value":679}," -ac",{"type":47,"tag":373,"props":681,"children":682},{"style":380},[683],{"type":52,"value":684},"        # Standard\n",{"type":47,"tag":373,"props":686,"children":687},{"class":375,"line":386},[688,692,696,700,704,708,713],{"type":47,"tag":373,"props":689,"children":690},{"style":390},[691],{"type":52,"value":393},{"type":47,"tag":373,"props":693,"children":694},{"style":396},[695],{"type":52,"value":399},{"type":47,"tag":373,"props":697,"children":698},{"style":396},[699],{"type":52,"value":404},{"type":47,"tag":373,"props":701,"children":702},{"style":396},[703],{"type":52,"value":409},{"type":47,"tag":373,"props":705,"children":706},{"style":396},[707],{"type":52,"value":414},{"type":47,"tag":373,"props":709,"children":710},{"style":396},[711],{"type":52,"value":712}," -ach",{"type":47,"tag":373,"props":714,"children":715},{"style":380},[716],{"type":52,"value":717},"       # Per-host (multi-host scans)\n",{"type":47,"tag":373,"props":719,"children":720},{"class":375,"line":422},[721,725,729,733,737,741,746,750,755,759],{"type":47,"tag":373,"props":722,"children":723},{"style":390},[724],{"type":52,"value":393},{"type":47,"tag":373,"props":726,"children":727},{"style":396},[728],{"type":52,"value":399},{"type":47,"tag":373,"props":730,"children":731},{"style":396},[732],{"type":52,"value":404},{"type":47,"tag":373,"props":734,"children":735},{"style":396},[736],{"type":52,"value":409},{"type":47,"tag":373,"props":738,"children":739},{"style":396},[740],{"type":52,"value":414},{"type":47,"tag":373,"props":742,"children":743},{"style":396},[744],{"type":52,"value":745}," -acc",{"type":47,"tag":373,"props":747,"children":748},{"style":471},[749],{"type":52,"value":474},{"type":47,"tag":373,"props":751,"children":752},{"style":396},[753],{"type":52,"value":754},"404",{"type":47,"tag":373,"props":756,"children":757},{"style":471},[758],{"type":52,"value":484},{"type":47,"tag":373,"props":760,"children":761},{"style":380},[762],{"type":52,"value":763}," # Custom calibration string\n",{"type":47,"tag":61,"props":765,"children":767},{"id":766},"common-patterns",[768],{"type":52,"value":769},"Common Patterns",{"type":47,"tag":355,"props":771,"children":773},{"id":772},"directory-discovery",[774],{"type":52,"value":775},"Directory Discovery",{"type":47,"tag":362,"props":777,"children":779},{"className":364,"code":778,"language":366,"meta":367,"style":367},"ffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fraft-large-directories.txt \\\n     -u https:\u002F\u002Ftarget.com\u002FFUZZ -e .php,.html,.txt,.bak \\\n     -ac -c -v -o results.json\n",[780],{"type":47,"tag":73,"props":781,"children":782},{"__ignoreMap":367},[783,805,831],{"type":47,"tag":373,"props":784,"children":785},{"class":375,"line":376},[786,790,794,799],{"type":47,"tag":373,"props":787,"children":788},{"style":390},[789],{"type":52,"value":393},{"type":47,"tag":373,"props":791,"children":792},{"style":396},[793],{"type":52,"value":399},{"type":47,"tag":373,"props":795,"children":796},{"style":396},[797],{"type":52,"value":798}," \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fraft-large-directories.txt",{"type":47,"tag":373,"props":800,"children":802},{"style":801},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[803],{"type":52,"value":804}," \\\n",{"type":47,"tag":373,"props":806,"children":807},{"class":375,"line":386},[808,813,817,822,827],{"type":47,"tag":373,"props":809,"children":810},{"style":396},[811],{"type":52,"value":812},"     -u",{"type":47,"tag":373,"props":814,"children":815},{"style":396},[816],{"type":52,"value":414},{"type":47,"tag":373,"props":818,"children":819},{"style":396},[820],{"type":52,"value":821}," -e",{"type":47,"tag":373,"props":823,"children":824},{"style":396},[825],{"type":52,"value":826}," .php,.html,.txt,.bak",{"type":47,"tag":373,"props":828,"children":829},{"style":801},[830],{"type":52,"value":804},{"type":47,"tag":373,"props":832,"children":833},{"class":375,"line":422},[834,839,844,849,854],{"type":47,"tag":373,"props":835,"children":836},{"style":396},[837],{"type":52,"value":838},"     -ac",{"type":47,"tag":373,"props":840,"children":841},{"style":396},[842],{"type":52,"value":843}," -c",{"type":47,"tag":373,"props":845,"children":846},{"style":396},[847],{"type":52,"value":848}," -v",{"type":47,"tag":373,"props":850,"children":851},{"style":396},[852],{"type":52,"value":853}," -o",{"type":47,"tag":373,"props":855,"children":856},{"style":396},[857],{"type":52,"value":858}," results.json\n",{"type":47,"tag":355,"props":860,"children":862},{"id":861},"subdomain-enumeration",[863],{"type":52,"value":864},"Subdomain Enumeration",{"type":47,"tag":362,"props":866,"children":868},{"className":364,"code":867,"language":366,"meta":367,"style":367},"ffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FDNS\u002Fsubdomains-top1million-5000.txt \\\n     -u https:\u002F\u002FFUZZ.target.com -ac -c -v -o results.json\n",[869],{"type":47,"tag":73,"props":870,"children":871},{"__ignoreMap":367},[872,892],{"type":47,"tag":373,"props":873,"children":874},{"class":375,"line":376},[875,879,883,888],{"type":47,"tag":373,"props":876,"children":877},{"style":390},[878],{"type":52,"value":393},{"type":47,"tag":373,"props":880,"children":881},{"style":396},[882],{"type":52,"value":399},{"type":47,"tag":373,"props":884,"children":885},{"style":396},[886],{"type":52,"value":887}," \u002Fopt\u002FSecLists\u002FDiscovery\u002FDNS\u002Fsubdomains-top1million-5000.txt",{"type":47,"tag":373,"props":889,"children":890},{"style":801},[891],{"type":52,"value":804},{"type":47,"tag":373,"props":893,"children":894},{"class":375,"line":386},[895,899,904,908,912,916,920],{"type":47,"tag":373,"props":896,"children":897},{"style":396},[898],{"type":52,"value":812},{"type":47,"tag":373,"props":900,"children":901},{"style":396},[902],{"type":52,"value":903}," https:\u002F\u002FFUZZ.target.com",{"type":47,"tag":373,"props":905,"children":906},{"style":396},[907],{"type":52,"value":679},{"type":47,"tag":373,"props":909,"children":910},{"style":396},[911],{"type":52,"value":843},{"type":47,"tag":373,"props":913,"children":914},{"style":396},[915],{"type":52,"value":848},{"type":47,"tag":373,"props":917,"children":918},{"style":396},[919],{"type":52,"value":853},{"type":47,"tag":373,"props":921,"children":922},{"style":396},[923],{"type":52,"value":858},{"type":47,"tag":355,"props":925,"children":927},{"id":926},"api-endpoint-discovery",[928],{"type":52,"value":929},"API Endpoint Discovery",{"type":47,"tag":362,"props":931,"children":933},{"className":364,"code":932,"language":366,"meta":367,"style":367},"ffuf -w \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fapi\u002Fapi-endpoints.txt \\\n     -u https:\u002F\u002Fapi.target.com\u002Fv1\u002FFUZZ \\\n     -H \"Authorization: Bearer YOUR_TOKEN_HERE\" -mc 200,201 -ac -c\n",[934],{"type":47,"tag":73,"props":935,"children":936},{"__ignoreMap":367},[937,957,973],{"type":47,"tag":373,"props":938,"children":939},{"class":375,"line":376},[940,944,948,953],{"type":47,"tag":373,"props":941,"children":942},{"style":390},[943],{"type":52,"value":393},{"type":47,"tag":373,"props":945,"children":946},{"style":396},[947],{"type":52,"value":399},{"type":47,"tag":373,"props":949,"children":950},{"style":396},[951],{"type":52,"value":952}," \u002Fopt\u002FSecLists\u002FDiscovery\u002FWeb-Content\u002Fapi\u002Fapi-endpoints.txt",{"type":47,"tag":373,"props":954,"children":955},{"style":801},[956],{"type":52,"value":804},{"type":47,"tag":373,"props":958,"children":959},{"class":375,"line":386},[960,964,969],{"type":47,"tag":373,"props":961,"children":962},{"style":396},[963],{"type":52,"value":812},{"type":47,"tag":373,"props":965,"children":966},{"style":396},[967],{"type":52,"value":968}," https:\u002F\u002Fapi.target.com\u002Fv1\u002FFUZZ",{"type":47,"tag":373,"props":970,"children":971},{"style":801},[972],{"type":52,"value":804},{"type":47,"tag":373,"props":974,"children":975},{"class":375,"line":422},[976,981,985,990,994,999,1004,1008],{"type":47,"tag":373,"props":977,"children":978},{"style":396},[979],{"type":52,"value":980},"     -H",{"type":47,"tag":373,"props":982,"children":983},{"style":471},[984],{"type":52,"value":474},{"type":47,"tag":373,"props":986,"children":987},{"style":396},[988],{"type":52,"value":989},"Authorization: Bearer YOUR_TOKEN_HERE",{"type":47,"tag":373,"props":991,"children":992},{"style":471},[993],{"type":52,"value":484},{"type":47,"tag":373,"props":995,"children":996},{"style":396},[997],{"type":52,"value":998}," -mc",{"type":47,"tag":373,"props":1000,"children":1001},{"style":396},[1002],{"type":52,"value":1003}," 200,201",{"type":47,"tag":373,"props":1005,"children":1006},{"style":396},[1007],{"type":52,"value":679},{"type":47,"tag":373,"props":1009,"children":1010},{"style":396},[1011],{"type":52,"value":1012}," -c\n",{"type":47,"tag":355,"props":1014,"children":1016},{"id":1015},"authenticated-fuzzing-with-raw-requests",[1017],{"type":52,"value":1018},"Authenticated Fuzzing with Raw Requests",{"type":47,"tag":55,"props":1020,"children":1021},{},[1022,1024,1030,1032,1038],{"type":52,"value":1023},"Capture a full authenticated request, save to ",{"type":47,"tag":73,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":52,"value":1029},"req.txt",{"type":52,"value":1031},", insert ",{"type":47,"tag":73,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":52,"value":1037},"FUZZ",{"type":52,"value":1039},":",{"type":47,"tag":362,"props":1041,"children":1045},{"className":1042,"code":1043,"language":1044,"meta":367,"style":367},"language-http shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","POST \u002Fapi\u002Fv1\u002Fusers\u002FFUZZ HTTP\u002F1.1\nHost: target.com\nAuthorization: Bearer YOUR_TOKEN_HERE\nCookie: session=YOUR_SESSION_ID\nContent-Type: application\u002Fjson\n\n{\"action\":\"view\",\"id\":\"1\"}\n","http",[1046],{"type":47,"tag":73,"props":1047,"children":1048},{"__ignoreMap":367},[1049,1057,1065,1073,1081,1089,1096],{"type":47,"tag":373,"props":1050,"children":1051},{"class":375,"line":376},[1052],{"type":47,"tag":373,"props":1053,"children":1054},{},[1055],{"type":52,"value":1056},"POST \u002Fapi\u002Fv1\u002Fusers\u002FFUZZ HTTP\u002F1.1\n",{"type":47,"tag":373,"props":1058,"children":1059},{"class":375,"line":386},[1060],{"type":47,"tag":373,"props":1061,"children":1062},{},[1063],{"type":52,"value":1064},"Host: target.com\n",{"type":47,"tag":373,"props":1066,"children":1067},{"class":375,"line":422},[1068],{"type":47,"tag":373,"props":1069,"children":1070},{},[1071],{"type":52,"value":1072},"Authorization: Bearer YOUR_TOKEN_HERE\n",{"type":47,"tag":373,"props":1074,"children":1075},{"class":375,"line":432},[1076],{"type":47,"tag":373,"props":1077,"children":1078},{},[1079],{"type":52,"value":1080},"Cookie: session=YOUR_SESSION_ID\n",{"type":47,"tag":373,"props":1082,"children":1083},{"class":375,"line":441},[1084],{"type":47,"tag":373,"props":1085,"children":1086},{},[1087],{"type":52,"value":1088},"Content-Type: application\u002Fjson\n",{"type":47,"tag":373,"props":1090,"children":1091},{"class":375,"line":491},[1092],{"type":47,"tag":373,"props":1093,"children":1094},{"emptyLinePlaceholder":426},[1095],{"type":52,"value":429},{"type":47,"tag":373,"props":1097,"children":1098},{"class":375,"line":499},[1099],{"type":47,"tag":373,"props":1100,"children":1101},{},[1102],{"type":52,"value":1103},"{\"action\":\"view\",\"id\":\"1\"}\n",{"type":47,"tag":362,"props":1105,"children":1107},{"className":364,"code":1106,"language":366,"meta":367,"style":367},"ffuf --request req.txt -w wordlist.txt -ac -o results.json\n",[1108],{"type":47,"tag":73,"props":1109,"children":1110},{"__ignoreMap":367},[1111],{"type":47,"tag":373,"props":1112,"children":1113},{"class":375,"line":376},[1114,1118,1123,1128,1132,1136,1140,1144],{"type":47,"tag":373,"props":1115,"children":1116},{"style":390},[1117],{"type":52,"value":393},{"type":47,"tag":373,"props":1119,"children":1120},{"style":396},[1121],{"type":52,"value":1122}," --request",{"type":47,"tag":373,"props":1124,"children":1125},{"style":396},[1126],{"type":52,"value":1127}," req.txt",{"type":47,"tag":373,"props":1129,"children":1130},{"style":396},[1131],{"type":52,"value":399},{"type":47,"tag":373,"props":1133,"children":1134},{"style":396},[1135],{"type":52,"value":404},{"type":47,"tag":373,"props":1137,"children":1138},{"style":396},[1139],{"type":52,"value":679},{"type":47,"tag":373,"props":1141,"children":1142},{"style":396},[1143],{"type":52,"value":853},{"type":47,"tag":373,"props":1145,"children":1146},{"style":396},[1147],{"type":52,"value":858},{"type":47,"tag":55,"props":1149,"children":1150},{},[1151,1153,1158],{"type":52,"value":1152},"See ",{"type":47,"tag":216,"props":1154,"children":1156},{"href":1155},"references\u002Frequest-templates.md",[1157],{"type":52,"value":1155},{"type":52,"value":1159}," for pre-built templates covering bearer tokens, session cookies, API keys, and GraphQL.",{"type":47,"tag":355,"props":1161,"children":1163},{"id":1162},"authenticated-fuzzing-agent-workflow",[1164],{"type":52,"value":1165},"Authenticated Fuzzing: Agent Workflow",{"type":47,"tag":55,"props":1167,"children":1168},{},[1169],{"type":52,"value":1170},"Authenticated fuzzing requires real credentials that the agent cannot obtain independently. When the user asks for authenticated fuzzing:",{"type":47,"tag":259,"props":1172,"children":1173},{},[1174,1211,1221,1232],{"type":47,"tag":98,"props":1175,"children":1176},{},[1177,1179],{"type":52,"value":1178},"Ask the user to provide ONE of:\n",{"type":47,"tag":94,"props":1180,"children":1181},{},[1182,1194,1206],{"type":47,"tag":98,"props":1183,"children":1184},{},[1185,1187,1192],{"type":52,"value":1186},"A raw HTTP request file (",{"type":47,"tag":73,"props":1188,"children":1190},{"className":1189},[],[1191],{"type":52,"value":1029},{"type":52,"value":1193},") with auth headers already included",{"type":47,"tag":98,"props":1195,"children":1196},{},[1197,1199,1204],{"type":52,"value":1198},"A curl command from browser DevTools (convert it to ",{"type":47,"tag":73,"props":1200,"children":1202},{"className":1201},[],[1203],{"type":52,"value":1029},{"type":52,"value":1205}," format)",{"type":47,"tag":98,"props":1207,"children":1208},{},[1209],{"type":52,"value":1210},"Individual credentials (Bearer token, session cookie, API key)",{"type":47,"tag":98,"props":1212,"children":1213},{},[1214,1216],{"type":52,"value":1215},"If given a curl command, convert it to raw HTTP request format and write to ",{"type":47,"tag":73,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":52,"value":1029},{"type":47,"tag":98,"props":1222,"children":1223},{},[1224,1226,1230],{"type":52,"value":1225},"If given individual credentials, use a template from ",{"type":47,"tag":216,"props":1227,"children":1228},{"href":1155},[1229],{"type":52,"value":1155},{"type":52,"value":1231}," and substitute real values",{"type":47,"tag":98,"props":1233,"children":1234},{},[1235],{"type":52,"value":1236},"Never fabricate or guess authentication tokens",{"type":47,"tag":355,"props":1238,"children":1240},{"id":1239},"idor-testing",[1241],{"type":52,"value":1242},"IDOR Testing",{"type":47,"tag":362,"props":1244,"children":1246},{"className":364,"code":1245,"language":366,"meta":367,"style":367},"ffuf --request req.txt -w \u003C(seq 1 10000) -ac -mc 200 -o idor_results.json\n",[1247],{"type":47,"tag":73,"props":1248,"children":1249},{"__ignoreMap":367},[1250],{"type":47,"tag":373,"props":1251,"children":1252},{"class":375,"line":376},[1253,1257,1261,1265,1269,1274,1279,1285,1290,1295,1299,1303,1308,1312],{"type":47,"tag":373,"props":1254,"children":1255},{"style":390},[1256],{"type":52,"value":393},{"type":47,"tag":373,"props":1258,"children":1259},{"style":396},[1260],{"type":52,"value":1122},{"type":47,"tag":373,"props":1262,"children":1263},{"style":396},[1264],{"type":52,"value":1127},{"type":47,"tag":373,"props":1266,"children":1267},{"style":396},[1268],{"type":52,"value":399},{"type":47,"tag":373,"props":1270,"children":1271},{"style":471},[1272],{"type":52,"value":1273}," \u003C(",{"type":47,"tag":373,"props":1275,"children":1276},{"style":390},[1277],{"type":52,"value":1278},"seq",{"type":47,"tag":373,"props":1280,"children":1282},{"style":1281},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1283],{"type":52,"value":1284}," 1",{"type":47,"tag":373,"props":1286,"children":1287},{"style":1281},[1288],{"type":52,"value":1289}," 10000",{"type":47,"tag":373,"props":1291,"children":1292},{"style":471},[1293],{"type":52,"value":1294},")",{"type":47,"tag":373,"props":1296,"children":1297},{"style":396},[1298],{"type":52,"value":679},{"type":47,"tag":373,"props":1300,"children":1301},{"style":396},[1302],{"type":52,"value":998},{"type":47,"tag":373,"props":1304,"children":1305},{"style":1281},[1306],{"type":52,"value":1307}," 200",{"type":47,"tag":373,"props":1309,"children":1310},{"style":396},[1311],{"type":52,"value":853},{"type":47,"tag":373,"props":1313,"children":1314},{"style":396},[1315],{"type":52,"value":1316}," idor_results.json\n",{"type":47,"tag":61,"props":1318,"children":1320},{"id":1319},"rate-limiting",[1321],{"type":52,"value":1322},"Rate Limiting",{"type":47,"tag":1324,"props":1325,"children":1326},"table",{},[1327,1351],{"type":47,"tag":1328,"props":1329,"children":1330},"thead",{},[1331],{"type":47,"tag":1332,"props":1333,"children":1334},"tr",{},[1335,1341,1346],{"type":47,"tag":1336,"props":1337,"children":1338},"th",{},[1339],{"type":52,"value":1340},"Environment",{"type":47,"tag":1336,"props":1342,"children":1343},{},[1344],{"type":52,"value":1345},"Flags",{"type":47,"tag":1336,"props":1347,"children":1348},{},[1349],{"type":52,"value":1350},"Notes",{"type":47,"tag":1352,"props":1353,"children":1354},"tbody",{},[1355,1378,1400,1422],{"type":47,"tag":1332,"props":1356,"children":1357},{},[1358,1364,1373],{"type":47,"tag":1359,"props":1360,"children":1361},"td",{},[1362],{"type":52,"value":1363},"Production (stealth)",{"type":47,"tag":1359,"props":1365,"children":1366},{},[1367],{"type":47,"tag":73,"props":1368,"children":1370},{"className":1369},[],[1371],{"type":52,"value":1372},"-rate 2 -t 10",{"type":47,"tag":1359,"props":1374,"children":1375},{},[1376],{"type":52,"value":1377},"Avoid WAF triggers",{"type":47,"tag":1332,"props":1379,"children":1380},{},[1381,1386,1395],{"type":47,"tag":1359,"props":1382,"children":1383},{},[1384],{"type":52,"value":1385},"Production (normal)",{"type":47,"tag":1359,"props":1387,"children":1388},{},[1389],{"type":47,"tag":73,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":52,"value":1394},"-rate 10 -t 20",{"type":47,"tag":1359,"props":1396,"children":1397},{},[1398],{"type":52,"value":1399},"Balanced",{"type":47,"tag":1332,"props":1401,"children":1402},{},[1403,1408,1417],{"type":47,"tag":1359,"props":1404,"children":1405},{},[1406],{"type":52,"value":1407},"Staging\u002FDev",{"type":47,"tag":1359,"props":1409,"children":1410},{},[1411],{"type":47,"tag":73,"props":1412,"children":1414},{"className":1413},[],[1415],{"type":52,"value":1416},"-rate 50 -t 40",{"type":47,"tag":1359,"props":1418,"children":1419},{},[1420],{"type":52,"value":1421},"Faster",{"type":47,"tag":1332,"props":1423,"children":1424},{},[1425,1430,1441],{"type":47,"tag":1359,"props":1426,"children":1427},{},[1428],{"type":52,"value":1429},"Local\u002FLab",{"type":47,"tag":1359,"props":1431,"children":1432},{},[1433,1435],{"type":52,"value":1434},"No limit, ",{"type":47,"tag":73,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":52,"value":1440},"-t 100",{"type":47,"tag":1359,"props":1442,"children":1443},{},[1444],{"type":52,"value":1445},"Maximum speed",{"type":47,"tag":61,"props":1447,"children":1449},{"id":1448},"analyzing-results",[1450],{"type":52,"value":1451},"Analyzing Results",{"type":47,"tag":55,"props":1453,"children":1454},{},[1455,1457,1462],{"type":52,"value":1456},"Save output as JSON (",{"type":47,"tag":73,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":52,"value":293},{"type":52,"value":1463},"), then read the file and focus on:",{"type":47,"tag":94,"props":1465,"children":1466},{},[1467,1477,1487,1497,1507],{"type":47,"tag":98,"props":1468,"children":1469},{},[1470,1475],{"type":47,"tag":266,"props":1471,"children":1472},{},[1473],{"type":52,"value":1474},"Anomalous status codes",{"type":52,"value":1476}," -- anything other than the baseline 404\u002F403",{"type":47,"tag":98,"props":1478,"children":1479},{},[1480,1485],{"type":47,"tag":266,"props":1481,"children":1482},{},[1483],{"type":52,"value":1484},"Size outliers",{"type":52,"value":1486}," -- responses significantly larger or smaller than average",{"type":47,"tag":98,"props":1488,"children":1489},{},[1490,1495],{"type":47,"tag":266,"props":1491,"children":1492},{},[1493],{"type":52,"value":1494},"Interesting keywords",{"type":52,"value":1496}," in URLs -- admin, api, backup, config, .git, .env",{"type":47,"tag":98,"props":1498,"children":1499},{},[1500,1505],{"type":47,"tag":266,"props":1501,"children":1502},{},[1503],{"type":52,"value":1504},"Timing anomalies",{"type":52,"value":1506}," -- slow responses may indicate SQL injection or heavy processing",{"type":47,"tag":98,"props":1508,"children":1509},{},[1510,1515],{"type":47,"tag":266,"props":1511,"children":1512},{},[1513],{"type":52,"value":1514},"Follow-up targets",{"type":52,"value":1516}," -- interesting findings warrant deeper fuzzing",{"type":47,"tag":55,"props":1518,"children":1519},{},[1520,1521,1527,1529,1535,1537,1543],{"type":52,"value":327},{"type":47,"tag":73,"props":1522,"children":1524},{"className":1523},[],[1525],{"type":52,"value":1526},"-fs",{"type":52,"value":1528}," to filter by response size and ",{"type":47,"tag":73,"props":1530,"children":1532},{"className":1531},[],[1533],{"type":52,"value":1534},"-fc",{"type":52,"value":1536}," to filter by status code when auto-calibration isn't sufficient. Run ",{"type":47,"tag":73,"props":1538,"children":1540},{"className":1539},[],[1541],{"type":52,"value":1542},"ffuf -h",{"type":52,"value":1544}," for the full list of match\u002Ffilter flags.",{"type":47,"tag":61,"props":1546,"children":1548},{"id":1547},"references",[1549],{"type":52,"value":1550},"References",{"type":47,"tag":94,"props":1552,"children":1553},{},[1554,1564,1574,1585],{"type":47,"tag":98,"props":1555,"children":1556},{},[1557,1562],{"type":47,"tag":216,"props":1558,"children":1559},{"href":218},[1560],{"type":52,"value":1561},"Wordlist selection guide",{"type":52,"value":1563}," -- recommended SecLists by scenario",{"type":47,"tag":98,"props":1565,"children":1566},{},[1567,1572],{"type":47,"tag":216,"props":1568,"children":1569},{"href":1155},[1570],{"type":52,"value":1571},"Authenticated request templates",{"type":52,"value":1573}," -- pre-built req.txt for bearer tokens, cookies, API keys",{"type":47,"tag":98,"props":1575,"children":1576},{},[1577],{"type":47,"tag":216,"props":1578,"children":1582},{"href":1579,"rel":1580},"https:\u002F\u002Fgithub.com\u002Fffuf\u002Fffuf\u002Fwiki",[1581],"nofollow",[1583],{"type":52,"value":1584},"ffuf official docs",{"type":47,"tag":98,"props":1586,"children":1587},{},[1588],{"type":47,"tag":216,"props":1589,"children":1592},{"href":1590,"rel":1591},"https:\u002F\u002Fgithub.com\u002Fdanielmiessler\u002FSecLists",[1581],[1593],{"type":52,"value":1594},"SecLists",{"type":47,"tag":1596,"props":1597,"children":1598},"style",{},[1599],{"type":52,"value":1600},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1602,"total":1756},[1603,1620,1630,1648,1663,1676,1688,1698,1711,1722,1734,1745],{"slug":1604,"name":1604,"fn":1605,"description":1606,"org":1607,"tags":1608,"stars":1617,"repoUrl":1618,"updatedAt":1619},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1609,1612,1615,1616],{"name":1610,"slug":1611,"type":16},"C#","c",{"name":1613,"slug":1614,"type":16},"Debugging","debugging",{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:14.925095",{"slug":1621,"name":1621,"fn":1622,"description":1623,"org":1624,"tags":1625,"stars":1617,"repoUrl":1618,"updatedAt":1629},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1626,1627,1628],{"name":1610,"slug":1611,"type":16},{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:05:12.433192",{"slug":1631,"name":1631,"fn":1632,"description":1633,"org":1634,"tags":1635,"stars":1617,"repoUrl":1618,"updatedAt":1647},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1636,1639,1642,1643,1646],{"name":1637,"slug":1638,"type":16},"Agents","agents",{"name":1640,"slug":1641,"type":16},"CI\u002FCD","ci-cd",{"name":18,"slug":19,"type":16},{"name":1644,"slug":1645,"type":16},"GitHub Actions","github-actions",{"name":14,"slug":15,"type":16},"2026-07-18T05:47:48.564744",{"slug":1649,"name":1649,"fn":1650,"description":1651,"org":1652,"tags":1653,"stars":1617,"repoUrl":1618,"updatedAt":1662},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1654,1657,1658,1659],{"name":1655,"slug":1656,"type":16},"Audit","audit",{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":1660,"slug":1661,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":1664,"name":1664,"fn":1665,"description":1666,"org":1667,"tags":1668,"stars":1617,"repoUrl":1618,"updatedAt":1675},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1669,1672],{"name":1670,"slug":1671,"type":16},"Engineering","engineering",{"name":1673,"slug":1674,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":1677,"name":1677,"fn":1678,"description":1679,"org":1680,"tags":1681,"stars":1617,"repoUrl":1618,"updatedAt":1687},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1682,1685,1686],{"name":1683,"slug":1684,"type":16},"Python","python",{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},"2026-07-17T06:05:14.575191",{"slug":1689,"name":1689,"fn":1690,"description":1691,"org":1692,"tags":1693,"stars":1617,"repoUrl":1618,"updatedAt":1697},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1694,1695,1696],{"name":1655,"slug":1656,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},"2026-08-01T05:44:54.920542",{"slug":1699,"name":1699,"fn":1700,"description":1701,"org":1702,"tags":1703,"stars":1617,"repoUrl":1618,"updatedAt":1710},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1704,1707,1708,1709],{"name":1705,"slug":1706,"type":16},"Architecture","architecture",{"name":1655,"slug":1656,"type":16},{"name":18,"slug":19,"type":16},{"name":1670,"slug":1671,"type":16},"2026-07-18T05:47:40.122449",{"slug":1712,"name":1712,"fn":1713,"description":1714,"org":1715,"tags":1716,"stars":1617,"repoUrl":1618,"updatedAt":1721},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1717,1718,1719,1720],{"name":1655,"slug":1656,"type":16},{"name":18,"slug":19,"type":16},{"name":1670,"slug":1671,"type":16},{"name":14,"slug":15,"type":16},"2026-07-18T05:47:39.210985",{"slug":1723,"name":1723,"fn":1724,"description":1725,"org":1726,"tags":1727,"stars":1617,"repoUrl":1618,"updatedAt":1733},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1728,1729,1732],{"name":1655,"slug":1656,"type":16},{"name":1730,"slug":1731,"type":16},"CLI","cli",{"name":14,"slug":15,"type":16},"2026-07-17T06:05:33.198077",{"slug":1735,"name":1735,"fn":1736,"description":1737,"org":1738,"tags":1739,"stars":1617,"repoUrl":1618,"updatedAt":1744},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1740,1741,1742,1743],{"name":1655,"slug":1656,"type":16},{"name":1610,"slug":1611,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},"2026-07-17T06:05:11.333374",{"slug":1746,"name":1746,"fn":1747,"description":1748,"org":1749,"tags":1750,"stars":1617,"repoUrl":1618,"updatedAt":1755},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1751,1752,1753,1754],{"name":1655,"slug":1656,"type":16},{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":1660,"slug":1661,"type":16},"2026-07-18T05:47:42.84568",111,{"items":1758,"total":1855},[1759,1765,1775,1794,1806,1822,1836],{"slug":4,"name":4,"fn":5,"description":6,"org":1760,"tags":1761,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1762,1763,1764],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},{"name":21,"slug":22,"type":16},{"slug":1766,"name":1766,"fn":1767,"description":1768,"org":1769,"tags":1770,"stars":23,"repoUrl":24,"updatedAt":1774},"ghidra-headless","reverse engineer binaries with Ghidra","Reverse engineers binaries using Ghidra's headless analyzer. Use when decompiling executables, extracting functions, strings, symbols, or analyzing call graphs from compiled binaries without the Ghidra GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1771,1772,1773],{"name":18,"slug":19,"type":16},{"name":1613,"slug":1614,"type":16},{"name":14,"slug":15,"type":16},"2026-07-18T05:47:30.015093",{"slug":1776,"name":1776,"fn":1777,"description":1778,"org":1779,"tags":1780,"stars":23,"repoUrl":24,"updatedAt":1793},"grilling","stress-test plans and decisions","Interviews the user relentlessly about a plan, decision, or idea until every branch of the decision tree is resolved. Use when the user wants to stress-test their thinking, sharpen a plan or design before acting, or uses any 'grill' trigger phrase (e.g. \"grill me on this\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1781,1784,1787,1790],{"name":1782,"slug":1783,"type":16},"Analysis","analysis",{"name":1785,"slug":1786,"type":16},"Coaching","coaching",{"name":1788,"slug":1789,"type":16},"Ideation","ideation",{"name":1791,"slug":1792,"type":16},"Strategy","strategy","2026-07-18T05:48:12.46583",{"slug":1795,"name":1795,"fn":1796,"description":1797,"org":1798,"tags":1799,"stars":23,"repoUrl":24,"updatedAt":1805},"handoff","compact conversation for session handoff","Compacts the current conversation into a handoff document so a fresh agent can continue the work in a new session.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1800,1801,1804],{"name":1637,"slug":1638,"type":16},{"name":1802,"slug":1803,"type":16},"Context","context",{"name":1673,"slug":1674,"type":16},"2026-07-18T05:47:03.196098",{"slug":1807,"name":1807,"fn":1808,"description":1809,"org":1810,"tags":1811,"stars":23,"repoUrl":24,"updatedAt":1821},"humanizer","edit text to sound human-written","Remove signs of AI-generated writing from text. Use when editing or reviewing\ntext to make it sound more natural and human-written. Based on Wikipedia's\ncomprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including:\ninflated symbolism, promotional language, superficial -ing analyses, vague\nattributions, em dash overuse, rule of three, AI vocabulary words, negative\nparallelisms, and excessive conjunctive phrases. 30c5c8d (Update humanizer plugin to upstream v2.2.0)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1812,1815,1818],{"name":1813,"slug":1814,"type":16},"Content Creation","content-creation",{"name":1816,"slug":1817,"type":16},"Editing","editing",{"name":1819,"slug":1820,"type":16},"Writing","writing","2026-07-18T05:47:18.1749",{"slug":1823,"name":1823,"fn":1824,"description":1825,"org":1826,"tags":1827,"stars":23,"repoUrl":24,"updatedAt":1835},"last30days","research recent community discussions and trends","Researches a topic from the last 30 days on Reddit, X, and the web. Surfaces real community discussions with engagement metrics and synthesizes findings into actionable insights. Use when the user wants to know what people are saying about a topic right now.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1828,1829,1832],{"name":1782,"slug":1783,"type":16},{"name":1830,"slug":1831,"type":16},"Research","research",{"name":1833,"slug":1834,"type":16},"Social Media","social-media","2026-07-17T06:04:39.744471",{"slug":1837,"name":1837,"fn":1838,"description":1839,"org":1840,"tags":1841,"stars":23,"repoUrl":24,"updatedAt":1854},"openai-cloudflare-deploy","deploy applications to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1842,1845,1848,1851],{"name":1843,"slug":1844,"type":16},"Cloudflare","cloudflare",{"name":1846,"slug":1847,"type":16},"Cloudflare Pages","cloudflare-pages",{"name":1849,"slug":1850,"type":16},"Cloudflare Workers","cloudflare-workers",{"name":1852,"slug":1853,"type":16},"Deployment","deployment","2026-07-17T06:04:46.574433",31]