oss-fuzz/README.md

23 lines
1.4 KiB
Markdown
Raw Normal View History

2016-09-14 16:44:10 +00:00
# oss-fuzz
2016-09-14 17:09:15 +00:00
oss-fuzz is an effort to apply coverage-guided software fuzzing on scale to test open source software. It grew out of Chrome in-process fuzzing effort ([Blog Post](https://security.googleblog.com/2016/08/guided-in-process-fuzzing-of-chrome.html), [Project Page](https://chromium.googlesource.com/chromium/src/testing/libfuzzer/)).
2016-09-14 16:44:10 +00:00
*Project Status*: The project currently is in early stage. We focus on libFuzzer first. Documentation and smoothing the process is our main priority.
## Documentation
* [New Library Guide](docs/new_library.md) walks through steps necessary to add fuzzers to an open source project.
2016-09-27 18:59:07 +00:00
* [Running and Building Fuzzers](docs/building_running_fuzzers.md) documents the process for fuzzers that are
*part of target project* source code repository.
* [Running and Building External Fuzzers](docs/building_running_fuzzers_external.md) documents the process for fuzzers that are
*part of oss-fuzz* source code repository.
2016-10-06 20:59:17 +00:00
* [Project List](docs/projects.md) lists OSS projects integrated with oss-fuzz.
2016-09-14 16:44:10 +00:00
* [Chrome's Efficient Fuzzer Guide](https://chromium.googlesource.com/chromium/src/testing/libfuzzer/+/HEAD/efficient_fuzzer.md) while contains some chrome-specifics, is an excellent documentation on making your fuzzer better.
## References
* [libFuzzer](http://llvm.org/docs/LibFuzzer.html)
* [Chromium In-Process Fuzzing Project Page](https://chromium.googlesource.com/chromium/src/testing/libfuzzer/)