oss-fuzz/infra
Catena cyber aea1b456dd
SysSan: stricter file open detection (#8562)
cc @oliverchang 

This allows to get rid of false positives such as
https://github.com/google/oss-fuzz/blob/master/projects/phmap/phashmap_fuzz.cc#L33
and others which try to scan non-existing directories such as /config
2022-09-27 11:13:38 +10:00
..
base-images infra: bump Go to 1.19 (#8568) 2022-09-22 11:59:15 -07:00
build Don't use GitHub API for project syncs. (#8589) 2022-09-26 17:46:18 +10:00
ci [CI] Allow projects to opt-out of running tests. (#8518) 2022-09-19 10:21:43 +10:00
cifuzz [CFL] Support parallel fuzzing (#8396) 2022-09-22 11:21:35 -04:00
experimental SysSan: stricter file open detection (#8562) 2022-09-27 11:13:38 +10:00
tools [infra] Add script for pinning images when updating builders. (#8328) 2022-08-23 17:39:33 -04:00
uploader
.dockerignore
README.md Update README.md (#7352) 2022-03-02 10:39:34 -05:00
bisector.py [infra] Add different messages depending on bisection type (#6547) 2021-10-04 07:14:41 -05:00
bisector_test.py
build_fuzzers.Dockerfile
build_specified_commit.py
build_specified_commit_test.py
constants.py Centipede integration (#8046) 2022-09-06 02:34:58 +00:00
helper.py Centipede's CI build, trial build, and build tests (#8422) 2022-09-16 09:25:49 +10:00
helper_test.py [infra] Fix test failure. (#7098) 2022-01-05 15:00:00 -05:00
manifest.py [arm] Add manifest script (#8223) 2022-08-12 09:04:24 -04:00
presubmit.py [presubmit] Don't run tests in projects/ (#8143) 2022-08-03 15:02:51 -04:00
pytest.ini
repo_manager.py Consider submodules while commit and PR checkout (#7500) 2022-04-05 11:14:39 -04:00
repo_manager_test.py cflite: Support private repos (#6592) 2021-10-20 13:51:57 +11:00
retry.py
run_fuzzers.Dockerfile
templates.py Enable github issue filing in new projects. (#7810) 2022-06-08 11:47:51 +10:00
test_repos.py
utils.py [ClusterFuzzLite] Fix fuzz target search for coverage (#6799) 2021-11-09 07:49:21 -05:00
utils_test.py [cifuzz] Use javascript actions library for uploading artifacts (#6552) 2021-10-05 09:16:54 -04:00

README.md

infra

OSS-Fuzz project infrastructure

Core infrastructure:

  • base-images - docker images for building fuzz targets & corresponding jenkins pipeline.

Continuous Integration infrastructure:

  • ci - script to build projects in CI.

helper.py

script to automate common docker operations

Command Description
generate Generates skeleton files for a new project
build_image Builds a docker image for a given project
build_fuzzers Builds fuzz targets for a given project
run_fuzzer Runs a fuzz target in a docker container
coverage Runs fuzz target(s) in a docker container and generates a code coverage report. See Code Coverage doc
reproduce Runs a testcase to reproduce a crash
shell Starts a shell inside the docker image for a project