oss-fuzz/infra/base-images/base-runner
Abhishek Arya 4557d57b9b
Fix typo in bad_build_check (#1432)
2018-05-20 21:21:09 -07:00
..
Dockerfile Install fonts-dejavu on base-runner (#1392) 2018-05-02 08:33:08 -07:00
README.md [infra] Fix broken markup in documentation files. 2017-12-22 09:09:40 -08:00
bad_build_check Fix typo in bad_build_check (#1432) 2018-05-20 21:21:09 -07:00
llvm-cov [infra] Add another coverage build using Clang Source-based Code Coverage. (#804) 2017-08-31 13:43:06 -07:00
llvm-profdata [infra] Add another coverage build using Clang Source-based Code Coverage. (#804) 2017-08-31 13:43:06 -07:00
llvm-symbolizer
minijail0 Add script for testing sandbox. 2017-10-16 15:54:58 -07:00
reproduce
run_fuzzer Bash (#1382) 2018-04-30 10:38:48 -07:00
run_minijail Update run_minijail 2018-04-27 13:46:39 +10:00
sancov [infra] Add sancov binary to base-runner image in order to perform bad build checks. 2017-08-08 11:40:30 -07:00
test_all Use "jobs -rp" instead of "jobs -p" to avoid infinite loop. (#1411) 2018-05-10 17:47:05 -07:00
test_report

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 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>