1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hmz007 6d24f2138b
Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56)
3 years ago
..
gocoverage Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
Dockerfile Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
README.md Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
bad_build_check Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
collect_dft Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
coverage Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
coverage_helper Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
dataflow_tracer.py Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
download_corpus Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
parse_options.py Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
rcfilt Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
reproduce Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
run_fuzzer Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
targets_list Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
test_all.py Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
test_all_test.py Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
test_one.py Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago

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>