mirror of https://github.com/google/oss-fuzz.git
d250f4ffbb
* [infra] Upgrade reproduce command to re-use run_fuzzer functionality. * fix a typo * add missing quotes |
||
---|---|---|
.. | ||
Dockerfile | ||
README.md | ||
bad_build_check | ||
collect_dft | ||
coverage | ||
coverage_helper | ||
dataflow_tracer.py | ||
download_corpus | ||
minijail0 | ||
parse_options.py | ||
reproduce | ||
run_fuzzer | ||
run_minijail | ||
targets_list | ||
test_all | ||
test_one |
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>