oss-fuzz/infra/base-images/base-runner
Oliver Chang 75c9649979 base-runner run_fuzzer: pipe /dev/null to stdin
Targets could be incorrectly reading from stdin (e.g. #681).
2017-06-23 10:26:40 -07:00
..
Dockerfile Support honggfuzz as a FUZZING_ENGINE (#636) 2017-06-01 17:55:01 -07:00
README.md oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGE 2017-03-22 12:12:51 -07:00
llvm-symbolizer [infra] moving symbolizer to base runner 2016-11-21 12:35:58 -08:00
reproduce Add valgrind support in reproduce command (#596) 2017-05-10 14:32:01 -07:00
run_fuzzer base-runner run_fuzzer: pipe /dev/null to stdin 2017-06-23 10:26:40 -07:00
test_all Support honggfuzz as a FUZZING_ENGINE (#636) 2017-06-01 17:55:01 -07:00
test_report Support honggfuzz as a FUZZING_ENGINE (#636) 2017-06-01 17:55:01 -07:00

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>