OSS-Fuzz - continuous fuzzing for open source software.
Go to file
Oliver Chang ad0a74152e Update clusterfuzz.md 2016-11-18 12:01:58 -08:00
docs Update clusterfuzz.md 2016-11-18 12:01:58 -08:00
infra [fuzzer] adding ldd printout 2016-11-18 11:58:32 -08:00
targets [infra] use $src, $out and $work in build scripts instead of /src, /out, /work (#88) 2016-11-18 11:16:38 -08:00
.gitignore Implement a helper script. 2016-09-01 16:37:12 -07:00
CONTRIBUTING Create CONTRIBUTING 2016-10-12 13:26:26 -07:00
LICENSE Create LICENSE 2016-10-03 12:24:25 -07:00
README.md Update README.md 2016-11-18 08:32:07 -08:00

README.md

OSS-Fuzz - continuous fuzzing of open source software

Status: Beta. We are preparing the project for the first public release. Documentation and smoothing the process is our main priority.

FAQ | New Target Guide | Reproducing | Targets List | Targets issue tracker

Create New Issue for questions or feedback.

Goals

OSS-Fuzz aims to make common open source software more secure by combining modern white-box fuzzing techniques together with scalable distributed execution.

At the first stage of the project we plan to combine libFuzzer with various clang sanitizers. ClusterFuzz provides distributed fuzzer execution environment and reporting.

Background

Fuzz testing is a well-known technique for uncovering certain types of programming errors in software. Many detectable errors (e.g. buffer overruns) have real security implications.

Our previous experience applying libFuzzer to do guided in-process fuzzing of Chrome components has proved very successful.

Process Overview

The following process is used for targets in OSS-Fuzz:

  • a target is accepted to OSS-Fuzz.
  • OSS-Fuzz build server build target fuzzers regularly and submits them to ClusterFuzz for execution.
  • ClusterFuzz continuously executes target fuzzers
  • when fuzzing uncovers an issue, ClusterFuzz creates an internal testcase.
  • issues are automatically triaged and filed in the OSS-Fuzz testcase issue tracker. Example issue. (Why different tracker?)
  • if the target has a defined process for reporting security issues, we will follow it, otherwise we will cc target engineers on an issue.
  • engineers fix the issue and land the fix upstream.
  • fuzzing infrastructure automatically verifies the fix, adds a comment and closes the issue.
  • after 7 days has passed since the issue is fixed or after 90 days since reporting has passed, the issue becomes public.

The following table summarizes issue visibility through the process:

Issue State Visibility
New OSS-Fuzz engineers
Reported OSS-Fuzz engineers + everyone CC'ed on the bug
Fixed & Verified public
Lapsed (90 days since report) public

Accepting New Targets

In order to be accepted to OSS-Fuzz, an open-source target must have a significant user base and/or be critical to the global IT infrastructure.

To submit a new target to OSS-Fuzz:

  • create a pull request with a change to targets/README.md providing the following information:
    • target home site and details
    • source code repository location
    • a link to target security issue reporting process OR
    • an e-mail of the engineering contact person to be CCed on issue. This has to be an e-mail linked to a Google Account that belongs to an established target committer (according to VCS logs). If this is not you or address differs from VCS, an informal e-mail verification will be required. This e-mail will also be publicly listed in our Targets page.
  • once accepted by an OSS-Fuzz project member, follow the New Target Guide to write the code.

Bug Disclosure Guidelines

Following Google's standard disclosure policy OSS-Fuzz will adhere to following disclosure principles:

  • 90-day deadline. After notifying target authors, we will open reported issues in 90 days, or sooner if the fix is released.
  • Weekends and holidays. If a deadline is due to expire on a weekend or US public holiday, the deadline will be moved to the next normal work day.
  • Grace period. We will have a 14-day grace period. If a 90-day deadline will expire but upstream engineers let us know before the deadline that a patch is scheduled for release on a specific day within 14 days following the deadline, the public disclosure will be delayed until the availability of the patch.

Documentation

Build status

This page gives the latest build logs for each target.

Trophies

This page gives a list of publically viewable (fixed) bugs found by OSS-Fuzz.

References