├── .gitignore ├── README.md ├── fuzzing ├── README.md ├── config │ ├── fts-bug-regexs.toml │ └── targets.toml ├── extract-from-container.sh ├── fts │ ├── afl.Dockerfile │ ├── aflpp.Dockerfile │ ├── aflpp_driver_GNUmakefile │ ├── base.Dockerfile │ ├── build.sh │ ├── common.sh │ ├── coverage.Dockerfile │ ├── libarchive-2017-01-04-build.sh │ ├── libjpeg-turbo-07-2017-build.sh │ └── libxml2-v2.9.2-build.sh ├── magma │ ├── clean_corpora.sh │ ├── log-execs.patch │ ├── setup.sh │ ├── survival_analysis.py │ └── v1.1.patch ├── readelf │ ├── Dockerfile │ ├── afl_llvm_mode.Makefile │ ├── data │ │ ├── aflfast-ascii-cov.csv.gz │ │ ├── aflfast-cmin-cov.csv.gz │ │ ├── aflfast-singleton-cov.csv.gz │ │ ├── aflplusplus-ascii-cov.csv.gz │ │ ├── aflplusplus-cmin-cov.csv.gz │ │ ├── aflplusplus-singleton-cov.csv.gz │ │ ├── honggfuzz-ascii-cov.csv.gz │ │ ├── honggfuzz-cmin-cov.csv.gz │ │ ├── honggfuzz-singleton-cov.csv.gz │ │ └── readelf-experiment.csv.gz │ ├── scripts │ │ ├── fuzz.sh │ │ ├── get_afl_cov.sh │ │ ├── get_hfuzz_cov.sh │ │ ├── merge_cov.py │ │ ├── plot_cov.py │ │ └── requirements.txt │ └── seeds │ │ ├── cmin-seeds.tar.xz │ │ └── uninformed-seed └── real-world │ ├── freetype2 │ ├── afl.Dockerfile │ ├── base.Dockerfile │ └── coverage.Dockerfile │ ├── librsvg │ ├── afl.Dockerfile │ ├── base.Dockerfile │ └── coverage.Dockerfile │ ├── libtiff │ ├── afl.Dockerfile │ ├── base.Dockerfile │ └── coverage.Dockerfile │ ├── libxml2 │ ├── afl.Dockerfile │ ├── base.Dockerfile │ └── coverage.Dockerfile │ ├── poppler │ ├── afl-toolchain-llvm.cmake │ ├── afl.Dockerfile │ ├── base.Dockerfile │ ├── coverage.Dockerfile │ └── toolchain.cmake │ └── sox │ ├── afl.Dockerfile │ ├── base.Dockerfile │ └── coverage.Dockerfile ├── optimin ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.jsoncpp ├── optimin.py └── src │ ├── AFLShowmapMaxSat.cpp │ ├── AFLShowmapZ3.cpp │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── Common.h │ ├── LLVMCovZ3.cpp │ ├── ProgressBar.h │ ├── Z3Common.cpp │ ├── Z3Common.h │ └── jsoncpp │ ├── json │ ├── json-forwards.h │ ├── json.h │ └── jsoncpp.cpp │ └── jsoncpp.cpp └── scripts ├── README.md ├── bin ├── afl_cmin.py ├── afl_coverage_merge.py ├── afl_coverage_pca.py ├── coverage_auc.py ├── eval_maxsat.py ├── expand_hdf5_coverage.py ├── fuzz.py ├── get_corpus.py ├── get_libs.py ├── llvm_cov_merge.py ├── llvm_cov_stats.py ├── qminset.py ├── replay_seeds.py ├── timestamp_afl.py ├── timestamp_honggfuzz.py ├── triage_crashes.py └── visualize_corpora.py ├── seed_selection ├── __init__.py ├── afl.py ├── argparse.py ├── coverage.py ├── datastore.py ├── istarmap.py ├── log.py └── seeds.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/README.md -------------------------------------------------------------------------------- /fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/README.md -------------------------------------------------------------------------------- /fuzzing/config/fts-bug-regexs.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/config/fts-bug-regexs.toml -------------------------------------------------------------------------------- /fuzzing/config/targets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/config/targets.toml -------------------------------------------------------------------------------- /fuzzing/extract-from-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/extract-from-container.sh -------------------------------------------------------------------------------- /fuzzing/fts/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/fts/aflpp.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/aflpp.Dockerfile -------------------------------------------------------------------------------- /fuzzing/fts/aflpp_driver_GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/aflpp_driver_GNUmakefile -------------------------------------------------------------------------------- /fuzzing/fts/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/fts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/build.sh -------------------------------------------------------------------------------- /fuzzing/fts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/common.sh -------------------------------------------------------------------------------- /fuzzing/fts/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/fts/libarchive-2017-01-04-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/libarchive-2017-01-04-build.sh -------------------------------------------------------------------------------- /fuzzing/fts/libjpeg-turbo-07-2017-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/libjpeg-turbo-07-2017-build.sh -------------------------------------------------------------------------------- /fuzzing/fts/libxml2-v2.9.2-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/fts/libxml2-v2.9.2-build.sh -------------------------------------------------------------------------------- /fuzzing/magma/clean_corpora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/magma/clean_corpora.sh -------------------------------------------------------------------------------- /fuzzing/magma/log-execs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/magma/log-execs.patch -------------------------------------------------------------------------------- /fuzzing/magma/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/magma/setup.sh -------------------------------------------------------------------------------- /fuzzing/magma/survival_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/magma/survival_analysis.py -------------------------------------------------------------------------------- /fuzzing/magma/v1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/magma/v1.1.patch -------------------------------------------------------------------------------- /fuzzing/readelf/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/Dockerfile -------------------------------------------------------------------------------- /fuzzing/readelf/afl_llvm_mode.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/afl_llvm_mode.Makefile -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflfast-ascii-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflfast-ascii-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflfast-cmin-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflfast-cmin-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflfast-singleton-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflfast-singleton-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflplusplus-ascii-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflplusplus-ascii-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflplusplus-cmin-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflplusplus-cmin-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/aflplusplus-singleton-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/aflplusplus-singleton-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/honggfuzz-ascii-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/honggfuzz-ascii-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/honggfuzz-cmin-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/honggfuzz-cmin-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/honggfuzz-singleton-cov.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/honggfuzz-singleton-cov.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/data/readelf-experiment.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/data/readelf-experiment.csv.gz -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/scripts/fuzz.sh -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/get_afl_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/scripts/get_afl_cov.sh -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/get_hfuzz_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/scripts/get_hfuzz_cov.sh -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/merge_cov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/scripts/merge_cov.py -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/plot_cov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/scripts/plot_cov.py -------------------------------------------------------------------------------- /fuzzing/readelf/scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | seaborn 4 | -------------------------------------------------------------------------------- /fuzzing/readelf/seeds/cmin-seeds.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/readelf/seeds/cmin-seeds.tar.xz -------------------------------------------------------------------------------- /fuzzing/readelf/seeds/uninformed-seed: -------------------------------------------------------------------------------- 1 | ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~ -------------------------------------------------------------------------------- /fuzzing/real-world/freetype2/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/freetype2/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/freetype2/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/freetype2/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/freetype2/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/freetype2/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/librsvg/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/librsvg/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/librsvg/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/librsvg/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/librsvg/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/librsvg/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libtiff/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libtiff/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libtiff/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libtiff/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libtiff/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libtiff/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libxml2/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libxml2/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libxml2/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libxml2/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/libxml2/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/libxml2/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/poppler/afl-toolchain-llvm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/poppler/afl-toolchain-llvm.cmake -------------------------------------------------------------------------------- /fuzzing/real-world/poppler/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/poppler/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/poppler/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/poppler/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/poppler/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/poppler/coverage.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/poppler/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/poppler/toolchain.cmake -------------------------------------------------------------------------------- /fuzzing/real-world/sox/afl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/sox/afl.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/sox/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/sox/base.Dockerfile -------------------------------------------------------------------------------- /fuzzing/real-world/sox/coverage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/fuzzing/real-world/sox/coverage.Dockerfile -------------------------------------------------------------------------------- /optimin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/.gitignore -------------------------------------------------------------------------------- /optimin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/CMakeLists.txt -------------------------------------------------------------------------------- /optimin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/Dockerfile -------------------------------------------------------------------------------- /optimin/LICENSE.jsoncpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/LICENSE.jsoncpp -------------------------------------------------------------------------------- /optimin/optimin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/optimin.py -------------------------------------------------------------------------------- /optimin/src/AFLShowmapMaxSat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/AFLShowmapMaxSat.cpp -------------------------------------------------------------------------------- /optimin/src/AFLShowmapZ3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/AFLShowmapZ3.cpp -------------------------------------------------------------------------------- /optimin/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/CMakeLists.txt -------------------------------------------------------------------------------- /optimin/src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/Common.cpp -------------------------------------------------------------------------------- /optimin/src/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/Common.h -------------------------------------------------------------------------------- /optimin/src/LLVMCovZ3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/LLVMCovZ3.cpp -------------------------------------------------------------------------------- /optimin/src/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/ProgressBar.h -------------------------------------------------------------------------------- /optimin/src/Z3Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/Z3Common.cpp -------------------------------------------------------------------------------- /optimin/src/Z3Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/Z3Common.h -------------------------------------------------------------------------------- /optimin/src/jsoncpp/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/jsoncpp/json/json-forwards.h -------------------------------------------------------------------------------- /optimin/src/jsoncpp/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/jsoncpp/json/json.h -------------------------------------------------------------------------------- /optimin/src/jsoncpp/json/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/jsoncpp/json/jsoncpp.cpp -------------------------------------------------------------------------------- /optimin/src/jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/optimin/src/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bin/afl_cmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/afl_cmin.py -------------------------------------------------------------------------------- /scripts/bin/afl_coverage_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/afl_coverage_merge.py -------------------------------------------------------------------------------- /scripts/bin/afl_coverage_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/afl_coverage_pca.py -------------------------------------------------------------------------------- /scripts/bin/coverage_auc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/coverage_auc.py -------------------------------------------------------------------------------- /scripts/bin/eval_maxsat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/eval_maxsat.py -------------------------------------------------------------------------------- /scripts/bin/expand_hdf5_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/expand_hdf5_coverage.py -------------------------------------------------------------------------------- /scripts/bin/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/fuzz.py -------------------------------------------------------------------------------- /scripts/bin/get_corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/get_corpus.py -------------------------------------------------------------------------------- /scripts/bin/get_libs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/get_libs.py -------------------------------------------------------------------------------- /scripts/bin/llvm_cov_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/llvm_cov_merge.py -------------------------------------------------------------------------------- /scripts/bin/llvm_cov_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/llvm_cov_stats.py -------------------------------------------------------------------------------- /scripts/bin/qminset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/qminset.py -------------------------------------------------------------------------------- /scripts/bin/replay_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/replay_seeds.py -------------------------------------------------------------------------------- /scripts/bin/timestamp_afl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/timestamp_afl.py -------------------------------------------------------------------------------- /scripts/bin/timestamp_honggfuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/timestamp_honggfuzz.py -------------------------------------------------------------------------------- /scripts/bin/triage_crashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/triage_crashes.py -------------------------------------------------------------------------------- /scripts/bin/visualize_corpora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/bin/visualize_corpora.py -------------------------------------------------------------------------------- /scripts/seed_selection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/__init__.py -------------------------------------------------------------------------------- /scripts/seed_selection/afl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/afl.py -------------------------------------------------------------------------------- /scripts/seed_selection/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/argparse.py -------------------------------------------------------------------------------- /scripts/seed_selection/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/coverage.py -------------------------------------------------------------------------------- /scripts/seed_selection/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/datastore.py -------------------------------------------------------------------------------- /scripts/seed_selection/istarmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/istarmap.py -------------------------------------------------------------------------------- /scripts/seed_selection/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/log.py -------------------------------------------------------------------------------- /scripts/seed_selection/seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/seed_selection/seeds.py -------------------------------------------------------------------------------- /scripts/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/fuzzing-seed-selection/HEAD/scripts/setup.py --------------------------------------------------------------------------------