Clone this repo:

Branches

  1. 4134e01 [owners] Remove paulsemel@chromium.org from testing/libfuzzer/OWNERS by Owners Cleanup · 3 days ago main
  2. e924da4 [test][fuzzilli] Add owners for the Chromium-Fuzzilli integration by Michael Achenbach · 2 weeks ago
  3. 5f9ba1c [Fuzzing] Expect Mac ARM64 stack frame format. by Titouan Rigoudy · 3 weeks ago
  4. 4fbd7d9 [Fuzzing] Fix fuzzing_unittests build under MSan. by Titouan Rigoudy · 3 weeks ago
  5. 1d8a86a [Fuzzing] Adjust test expectations when seed corpuses are not built. by Titouan Rigoudy · 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