OSS-Fuzz - continuous fuzzing for open source software.
Go to file
Markus Holtermann c607487f57 Hide wget output to reduce clutter (#2683)
When using wget to download files in a Dockerfile, the progress output of wget gets completely screwed up, making the build log almost impossible to read. By providing `-q` to wget the output will be hidden.
2019-08-11 07:37:44 -07:00
docs [docs] Change "hundreds of bugs" to "thousands of bugs" :) (#2674) 2019-08-09 12:35:14 -07:00
infra Switch docs to new structure (#2663) 2019-08-07 07:37:16 -07:00
projects Hide wget output to reduce clutter (#2683) 2019-08-11 07:37:44 -07:00
.gitignore [infra] replacing wget with ADD where possible 2016-12-28 14:09:09 -08:00
.travis.yml [infra] Add support for dataflow builds to the helper script and build check (#1632). (#2501) 2019-06-12 11:08:15 -07:00
CONTRIBUTING Other projects use the notation GitHub, but this project was fixed as Github. (#1377) 2018-04-29 19:04:09 -07:00
LICENSE Create LICENSE 2016-10-03 12:24:25 -07:00
README.md [docs] Change "hundreds of bugs" to "thousands of bugs" :) (#2674) 2019-08-09 12:35:14 -07:00
oss-fuzz.iml Add jekyll generator for docs. (#2660) 2019-08-06 13:29:19 -07:00

README.md

OSS-Fuzz: Continuous Fuzzing for Open Source Software

Fuzz testing is a well-known technique for uncovering programming errors in software. Many of these detectable errors, like buffer overflow, can have serious security implications. Google has found thousands of security vulnerabilities and stability bugs by deploying guided in-process fuzzing of Chrome components, and we now want to share that service with the open source community.

In cooperation with the Core Infrastructure Initiative, OSS-Fuzz aims to make common open source software more secure and stable by combining modern fuzzing techniques with scalable, distributed execution.

We support the libFuzzer and AFL fuzzing engines in combination with Sanitizers, as well as ClusterFuzz, a distributed fuzzer execution environment and reporting tool.

Currently, OSS-Fuzz supports C and C++ code, though other languages supported by LLVM may work too.

Overview

OSS-Fuzz process diagram

Documentation

Read our detailed documentation to learn how to use OSS-Fuzz.

Trophies

As of August 2019, OSS-Fuzz has found ~14,000 bugs in over 200 open source projects.

Blog posts