oss-fuzz/README.md

39 lines
2.1 KiB
Markdown
Raw Normal View History

2016-09-14 16:44:10 +00:00
# oss-fuzz
2016-10-19 17:52:28 +00:00
> Fuzzing Open Source Software.
2016-09-14 16:44:10 +00:00
2016-10-19 17:52:02 +00:00
*Project Status*: We are preparing the project for the first public release. Documentation and smoothing the process is our main priority.
2016-09-14 16:44:10 +00:00
2016-10-17 20:01:00 +00:00
[Open new issue](https://github.com/google/oss-fuzz/issues/new) for questions or feedback.
2016-10-17 19:59:36 +00:00
2016-09-14 16:44:10 +00:00
## 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.
* [Life of a bug](docs/life_of_a_bug.md)
2016-10-19 17:53:00 +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.
* [Guided in-process fuzzing of Chrome components](https://security.googleblog.com/2016/08/guided-in-process-fuzzing-of-chrome.html) -
Google Security Blog post describing the precursor work we've been doing in Chrome.
2016-09-14 16:44:10 +00:00
2016-10-08 01:28:27 +00:00
## Build status
[Build status](https://oss-fuzz-build-logs.storage.googleapis.com/status.html)
2016-10-06 21:02:52 +00:00
## Bounties
* freetype2:
[9](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9&can=1&q=&colspec=ID%20Type%20Component%20Status%20Priority%20Milestone%20Owner%20Summary),
[10](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10&can=1&q=&colspec=ID%20Type%20Component%20Status%20Priority%20Milestone%20Owner%20Summary),
2016-10-06 21:02:52 +00:00
[36](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=36&can=1&q=&colspec=ID%20Type%20Component%20Status%20Priority%20Milestone%20Owner%20Summary)
2016-09-14 16:44:10 +00:00
## References
2016-10-17 23:40:10 +00:00
* [libFuzzer documentation](http://libfuzzer.info)
* [libFuzzer tutorial](http://tutorial.libfuzzer.info)
2016-10-19 17:52:02 +00:00
* [Chromium Fuzzing Page](https://chromium.googlesource.com/chromium/src/testing/libfuzzer/)
2016-09-14 16:44:10 +00:00