commit | 7abdd3b8c23bcdcde8880f08cff0db0e1c5b3603 | [log] [tgz] |
---|---|---|
author | Ben Pastene <bpastene@chromium.org> | Wed Jul 27 00:28:04 2022 |
committer | Copybara-Service <copybara-worker@google.com> | Wed Jul 27 00:38:57 2022 |
tree | d79580ebd50fa106fae0efdd62975953d04773b9 | |
parent | 3a9bcfc095fa6437b3aea7f8af6e26569475679c [diff] |
Add a note to libfuzzer/getting_started.md about using reclient/rbe `mb.py gen ...` will copy the GN args of a builder into a local build dir. Since some bots use reclient, and since reclient isn't ready for dev workstations yet (?), we need to replace the reclient args with goma. Bug: None Change-Id: I90e7c22acba562ea2827d703fe5ebdca86468366 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3787675 Reviewed-by: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Michael Crouse <mcrouse@chromium.org> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/main@{#1028524} NOKEYCHECK=True GitOrigin-RevId: e1d0e6bd587699620072c14f9909c1e5a92cc671
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.
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.
Creating a fuzz target that expects a protobuf instead of a byte stream as input.
Reproducing bugs found by libFuzzer/AFL and reported by ClusterFuzz.
Fuzzing mojo interfaces using automatically generated libprotobuf-mutator fuzzers.