Eliminate wildcard 200s and handle 429 rate limiting
Content discovery explodes with false positives when targets return soft-404 pages (200 for everything) or wildcard DNS responses. This recipe calibrates baselines, applies response filters (-fs/-fw/--exclude-length), and tunes request rates to avoid WAF throttling.
Create a skill called "Web Discovery Noise Filter". Inputs I will provide: - Target URL pattern (including FUZZ position) and any required headers - Sample responses for a known good path and a random nonexistent path - Constraints: max requests/second (if provided) and whether WAF throttling is expected Task: 1) Determine whether the target returns soft-404/wildcard responses. 2) Propose ffuf/gobuster commands with calibrated filters (size/words/lines). 3) Provide safe rate-limiting knobs (threads, rate, delay) to avoid 429/DoS. 4) Output should include a short "baseline record" I can paste into my engagement notes.
Common symptoms:
`curl -sk -o /dev/null -w "%{http_code} %{size_download}\n" https://target.tld/this-should-not-exist-$(date +%s)`
`ffuf -u https://target.tld/FUZZ -w words.txt -mc all -fs
`ffuf -u https://target.tld/FUZZ -w words.txt -mc all -fw
`ffuf -u https://target.tld/FUZZ -w words.txt -ac`
`gobuster dir -u https://target.tld -w words.txt --exclude-length
`ffuf ... -t 10 -rate 10`
`ffuf ... -p 0.2`
`ffuf ... -o ffuf.md -of md`
Fix "no templates provided", template drift, and signing surprises
Nuclei scans fail not because the engine is broken but because templates are missing, outdated, filtered out, or failing validation. This recipe diagnoses template path and version problems, performs safe updates, validates templates, and explains a secure workflow for code-template signing.
Install trust correctly and fix "can't download CA certificate"
Field-tested checklist for getting HTTPS interception working in Burp. Covers Firefox's separate trust store, the http://burpsuite download page not loading, quick verification, and safe post-engagement rollback.
A playbook for "stops at the same frame" and "freeze mid-render" failures
Renders freeze at a consistent percentage or frame — often caused by a bad clip, a heavy effect, a Fusion comp issue, or "stop render on error" settings. This recipe classifies the failure pattern and gives you a structured triage plan instead of blind re-exports.
Fix a common Premiere playback-lag issue caused by audio input device settings
Severe playback lag and stutter in Premiere Pro that looks like a codec performance problem but is actually caused by audio hardware input settings. This recipe provides a quick decision tree to test and fix the issue — often resolved in under a minute by switching the default input to "No Input."