oss-fuzz/infra/base-images/base-runner
Fabian Meumertzheim 6562f44c8a
Fix builds after Jazzer breaking change (#6622)
Follow-up to f043a72a0e, which became necessary due to
24069c3885
2021-10-20 17:24:25 +00:00
..
gocoverage profraw: move from golang to python (#6565) 2021-10-11 12:52:33 -04:00
Dockerfile profraw: move from golang to python (#6565) 2021-10-11 12:52:33 -04:00
README.md
bad_build_check [Ubuntu Upgrade] Raise threshold MSAN calls in for bad build check. (#6272) 2021-08-23 16:48:38 +00:00
collect_dft
coverage Fix builds after Jazzer breaking change (#6622) 2021-10-20 17:24:25 +00:00
coverage_helper [cifuzz] Fuzz in cifuzz-base (#6142) 2021-08-05 13:27:24 -07:00
dataflow_tracer.py
download_corpus
jacoco_report_converter.py [infra] File-level coverage for JVM projects (#5822) 2021-05-25 08:05:16 -07:00
parse_options.py
profraw_update.py profraw: fix python uint64 for difference (#6603) 2021-10-14 12:03:16 -07:00
rcfilt Rust coverage report (for Suricata) (#4697) 2021-03-08 07:05:35 -08:00
reproduce
run_fuzzer [selinux] also pass --no-install-recommends to apt-get (#6586) 2021-10-12 15:35:32 -04:00
targets_list [infra] Make `targets_list` detect JVM/Python targets (#5775) 2021-05-16 18:37:55 +00:00
test_all.py clusterfuzzlite: Upload builds after bad build check. (#6531) 2021-10-04 15:21:28 +00:00
test_all_test.py [infra][tests][NFC] Change mocked function prefix from "mocked_" to "mock_" (#6198) 2021-08-12 11:25:57 -07:00
test_one.py

README.md

base-runner

Base image for fuzzer runners.

docker run -ti gcr.io/oss-fuzz-base/base-runner <command> <args>

Commands

Command Description
reproduce <fuzzer_name> <fuzzer_options> build all fuzz targets and run specified one with testcase /testcase and given options.
run_fuzzer <fuzzer_name> <fuzzer_options> runs specified fuzzer combining options with .options file
test_all.py runs every binary in /out as a fuzzer for a while to ensure it works.

Examples

  • Reproduce using latest OSS-Fuzz build:
docker run --rm -ti -v <testcase_path>:/testcase gcr.io/oss-fuzz/$PROJECT_NAME reproduce <fuzzer_name>
  • Reproduce using local source checkout:
docker run --rm -ti -v <source_path>:/src/$PROJECT_NAME \
                    -v <testcase_path>:/testcase gcr.io/oss-fuzz/$PROJECT_NAME \
                    reproduce <fuzzer_name>