Chrome Release Bot (LUCI) 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
..
fuzzer_support_ios 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
fuzzers 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
proto 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
tests 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
AFL_integration.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
BUILD.gn 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
OWNERS 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
README.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
archive_corpus.py 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
dictionary_generator.py 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
efficient_fuzzing.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
fuzzer_test.gni 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
gen_fuzzer_config.py 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
gen_fuzzer_owners.py 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
getting_started.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
libFuzzer_integration.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
libfuzzer_exports.h 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
libprotobuf-mutator.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
reference.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
reproducing.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
unittest_main.cc 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ
zip_sources.py 4762b62e7d Publish DEPS for 106.0.5249.13 1 gadu atpakaļ

README.md

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.

[TOC]

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.

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

Advanced Topics

*** note Note: You can also fuzz code that needs multiple mutated inputs, or to generate inputs defined by a grammar.


Further Reading

Trophies

Other Links