tree: 10b7c171b7709e7ef10495ac412b6a27ab6eedfa [path history] [tgz]
  1. fuzzer_support_ios/
  2. fuzzers/
  3. fuzzilli/
  4. proto/
  5. renderer_fuzzing/
  6. research/
  7. tests/
  8. AFL_integration.md
  9. archive_corpus.py
  10. BUILD.gn
  11. confirm_fuzztest_init.cc
  12. confirm_fuzztests.py
  13. dictionary_generator.py
  14. efficient_fuzzing.md
  15. fuzz_test_coverage.md
  16. fuzzer_test.gni
  17. fuzzing_browsertests.md
  18. fuzztest_init_helper.cc
  19. fuzztest_init_helper.h
  20. fuzztest_wrapper.cpp
  21. gen_fuzzer_config.py
  22. gen_fuzzer_owners.py
  23. getting_started.md
  24. getting_started_with_libfuzzer.md
  25. libfuzzer_base_wrappers.h
  26. libfuzzer_exports.h
  27. libFuzzer_integration.md
  28. libprotobuf-mutator.md
  29. OWNERS
  30. README.md
  31. reference.md
  32. reproducing.md
  33. unittest_main.cc
  34. zip_sources.py
testing/libfuzzer/README.md

Fuzzing in Chromium

go/chrome-fuzzing

Just got a bug report from ClusterFuzz?: If you want to reproduce a ClusterFuzz crash locally, see How to Reproduce a Crash from ClusterFuzz.

Fuzzing is an automated software testing technique that provides invalid, unexpected, or random data as inputs to a program to find bugs.

Why fuzz? Fuzzing finds thousands of security and stability issues before they reach users (see go/fuzzing-success). For more information about the benefits of fuzzing, see go/why-fuzz.

Where to fuzz? Fuzz code that parses, decodes, or manipulates input from untrusted sources, such as the web.

Getting started

In Chromium, you can create and submit fuzz targets that run continuously at scale on ClusterFuzz. Prefer FuzzTest for all new fuzz targets. Use libFuzzer only to maintain existing targets.

FuzzTest (recommended)

FuzzTest integrates with the gtest framework and tests code that accepts structured, typed inputs, such as int, std::string, std::vector, or custom classes.

libFuzzer (deprecated)

libFuzzer tests APIs that consume raw byte buffers, such as image decoders and JSON or XML parsers.

Advanced topics

Getting help

If you have questions or encounter issues,

  • email chrome-fuzzing-core@google.com or
  • file a bug using the Chrome > Security > Fuzzing component.

View dashboard and stats