Tutorial
5 articles in Tutorial.
Triaging a False Positive — When the Fuzzer Lies
Not every crash is a bug. Allocator quirks, OOM kills, and harness state leaks all look like crashes in the dashboard. How to tell them apart and stay sane.
Fuzzing Protocol Buffers — Why Structure-Aware Beats Random Bytes
Random bytes hit the validity check and bounce. Use libprotobuf-mutator and a .proto schema to reach the message-handling code that actually contains the bugs.
Fuzzing a Rust Crate End-to-End with cargo-fuzz
A complete walkthrough: install cargo-fuzz, write a fuzz target against a real Rust crate, run it, triage a crash, minimise the reproducer, ship a fix.
Your First Fuzz Job on Fuzze.rs: From Zero to a Real Crash
Submit your first fuzzing job on Fuzze.rs: a tiny deliberately-buggy target, a six-line Dockerfile, and a short JSON config — explained line by line.
AFL++ Tutorial: Getting Started with Coverage-Guided Fuzzing
A hands-on AFL++ guide: instrument your target, build a starter corpus, tune for executions-per-second, and triage the first crashes that land.