oss-fuzz/infra/base-images/base-runner
Abhishek Arya bbac75cdef
Revert "Revert "[infra] also pass dictionaries when `afl` or `honggfuzz` is used as a fuzzing engine (#1925)" (#1927)" (#1928)
This reverts commit 6c6934dc8b.
2018-11-06 08:30:58 -08:00
..
Dockerfile [infra] Remove sancov and rename "profile" to "coverage". (#1839) 2018-10-01 06:43:21 -07:00
README.md [infra] Fix broken markup in documentation files. 2017-12-22 09:09:40 -08:00
bad_build_check [infra] skip the rest of check_instrumentation if grep hasn't found anything (#1689) 2018-08-04 18:14:29 -07:00
coverage [infra] Use -merge=1 instead of -runs=0 for coverage (#1743, follow-up #1547). 2018-09-25 17:22:07 -07:00
coverage_helper [infra] Use coverage utils from Chromium and other fixes (follow-up #1547). (#1741) 2018-08-21 14:02:48 -07:00
download_corpus [infra] Code Coverage: update download_corpus script and revert #1798. 2018-09-11 12:26:59 -07:00
llvm-cov [infra] Support extra arguments for llvm-cov + update the binaries. (#1629) 2018-07-19 15:58:58 -07:00
llvm-profdata [infra] Support extra arguments for llvm-cov + update the binaries. (#1629) 2018-07-19 15:58:58 -07:00
llvm-symbolizer [infra] moving symbolizer to base runner 2016-11-21 12:35:58 -08:00
minijail0 Add script for testing sandbox. 2017-10-16 15:54:58 -07:00
reproduce Add valgrind support in reproduce command (#596) 2017-05-10 14:32:01 -07:00
run_fuzzer Revert "Revert "[infra] also pass dictionaries when `afl` or `honggfuzz` is used as a fuzzing engine (#1925)" (#1927)" (#1928) 2018-11-06 08:30:58 -08:00
run_minijail Update run_minijail 2018-04-27 13:46:39 +10:00
targets_list Move targets_list to base-runner. 2018-07-27 14:59:02 +10:00
test_all Don't check for LLVMFuzzerTestOneInput when there is no fuzzing engine. (#1579) 2018-06-28 07:08:57 -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>