Clone this repo:

Branches

  1. 1d2fd21 fuzzing: Rename use_fuzzilli to use_chromium_fuzzilli by Giovanni Ortuño Urquidi · 12 hours ago main
  2. 12f4a81 [Fuzzing] Update OWNERS to reflect team changes. by Titouan Rigoudy · 18 hours ago
  3. 793a2f3 fuzzilli: Fix stack-buffer-overflow in Fuzzilli driver on shutdown by Giovanni Ortuño Urquidi · 10 days ago
  4. 4cc44bb Update SkPath utilities to use SkPathBuilder by Ben Wagner · 2 weeks ago
  5. 5efe53e Reland "Allow StackTrace to probe for dbghelp on Windows" by Alex Gough · 3 weeks ago

Fuzz testing in Chromium

go/chrome-fuzzing

Fuzzing is a testing technique that feeds auto-generated inputs to a piece of target code in an attempt to crash the code. It's one of the most effective methods we have for finding security and stability issues (see go/fuzzing-success). You can learn more about the benefits of fuzzing at go/why-fuzz.

This documentation covers the in-process guided fuzzing approach employed by different fuzzing engines, such as libFuzzer or [AFL]. To learn more about out-of-process fuzzers, please refer to the Blackbox fuzzing page in the ClusterFuzz documentation.

Getting Started

In Chromium, you can easily create and submit fuzz targets. The targets are automatically discovered by buildbots, built with different fuzzing engines, then uploaded to the distributed ClusterFuzz fuzzing system to run at scale.

You should fuzz any code which absorbs inputs from untrusted sources, such as the web. If the code parses, decodes, or otherwise manipulates that input, it's an especially good idea to fuzz it.

Create your first fuzz target and submit it by stepping through our Getting Started Guide.

Advanced Topics

Further Reading

Trophies

Other Links