├── FF_AFL++ ├── .clang-format ├── .custom-format.py ├── .dockerignore ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows │ │ ├── build_aflplusplus_docker.yaml │ │ ├── ci.yml │ │ ├── codeql-analysis.yml │ │ └── rust_custom_mutator.yml ├── .gitignore ├── .gitmodules ├── Android.bp ├── CITATION.cff ├── CONTRIBUTING.md ├── Changelog.md ├── Dockerfile ├── GNUmakefile ├── GNUmakefile.gcc_plugin ├── GNUmakefile.llvm ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── afl-cmin ├── afl-cmin.bash ├── afl-persistent-config ├── afl-plot ├── afl-system-config ├── afl-whatsup ├── afl-wine-trace ├── config.h ├── coresight_mode │ ├── .gitignore │ ├── GNUmakefile │ ├── Makefile │ ├── README.md │ └── patches │ │ └── 0001-Add-AFL-forkserver.patch ├── custom_mutators │ ├── Android.bp │ ├── README.md │ ├── examples │ │ ├── Makefile │ │ ├── README.md │ │ ├── XmlMutatorMin.py │ │ ├── common.py │ │ ├── custom_mutator_helpers.h │ │ ├── example.c │ │ ├── example.py │ │ ├── post_library_gif.so.c │ │ ├── post_library_png.so.c │ │ ├── simple-chunk-replace.py │ │ ├── simple_example.c │ │ └── wrapper_afl_min.py │ ├── gramatron │ │ ├── JSONC_VERSION │ │ ├── README.md │ │ ├── build_gramatron_mutator.sh │ │ ├── gramfuzz-helpers.c │ │ ├── gramfuzz-mutators.c │ │ ├── gramfuzz-util.c │ │ ├── gramfuzz.c │ │ ├── gramfuzz.h │ │ ├── grammars │ │ │ ├── js │ │ │ │ ├── source.json │ │ │ │ └── source_automata.json │ │ │ ├── php │ │ │ │ ├── source.json │ │ │ │ └── source_automata.json │ │ │ └── ruby │ │ │ │ ├── source.json │ │ │ │ └── source_automata.json │ │ ├── hashmap.c │ │ ├── hashmap.h │ │ ├── preprocess │ │ │ ├── construct_automata.py │ │ │ ├── gnf_converter.py │ │ │ └── prep_automaton.sh │ │ ├── test.c │ │ ├── test.h │ │ ├── utarray.h │ │ └── uthash.h │ ├── grammar_mutator │ │ ├── GRAMMAR_VERSION │ │ ├── README.md │ │ ├── build_grammar_mutator.sh │ │ └── update_grammar_ref.sh │ ├── honggfuzz │ │ ├── Makefile │ │ ├── README.md │ │ ├── custom_mutator_helpers.h │ │ ├── honggfuzz.c │ │ ├── honggfuzz.h │ │ ├── input.h │ │ ├── libhfcommon │ │ │ ├── common.h │ │ │ ├── log.h │ │ │ └── util.h │ │ ├── mangle.c │ │ └── mangle.h │ ├── libafl_base │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── lib.rs │ ├── libfuzzer │ │ ├── FuzzerBuiltins.h │ │ ├── FuzzerBuiltinsMsvc.h │ │ ├── FuzzerCommand.h │ │ ├── FuzzerCorpus.h │ │ ├── FuzzerCrossOver.cpp │ │ ├── FuzzerDataFlowTrace.cpp │ │ ├── FuzzerDataFlowTrace.h │ │ ├── FuzzerDefs.h │ │ ├── FuzzerDictionary.h │ │ ├── FuzzerDriver.cpp │ │ ├── FuzzerExtFunctions.def │ │ ├── FuzzerExtFunctions.h │ │ ├── FuzzerExtFunctionsDlsym.cpp │ │ ├── FuzzerExtFunctionsWeak.cpp │ │ ├── FuzzerExtFunctionsWindows.cpp │ │ ├── FuzzerExtraCounters.cpp │ │ ├── FuzzerFlags.def │ │ ├── FuzzerFork.cpp │ │ ├── FuzzerFork.h │ │ ├── FuzzerIO.cpp │ │ ├── FuzzerIO.h │ │ ├── FuzzerIOPosix.cpp │ │ ├── FuzzerIOWindows.cpp │ │ ├── FuzzerInterceptors.cpp │ │ ├── FuzzerInterface.h │ │ ├── FuzzerInternal.h │ │ ├── FuzzerLoop.cpp │ │ ├── FuzzerMain.cpp │ │ ├── FuzzerMerge.cpp │ │ ├── FuzzerMerge.h │ │ ├── FuzzerMutate.cpp │ │ ├── FuzzerMutate.h │ │ ├── FuzzerOptions.h │ │ ├── FuzzerPlatform.h │ │ ├── FuzzerRandom.h │ │ ├── FuzzerSHA1.cpp │ │ ├── FuzzerSHA1.h │ │ ├── FuzzerTracePC.cpp │ │ ├── FuzzerTracePC.h │ │ ├── FuzzerUtil.cpp │ │ ├── FuzzerUtil.h │ │ ├── FuzzerUtilDarwin.cpp │ │ ├── FuzzerUtilFuchsia.cpp │ │ ├── FuzzerUtilLinux.cpp │ │ ├── FuzzerUtilPosix.cpp │ │ ├── FuzzerUtilWindows.cpp │ │ ├── FuzzerValueBitMap.h │ │ ├── Makefile │ │ ├── README.md │ │ ├── libfuzzer.cpp │ │ └── libfuzzer.inc │ ├── libprotobuf-mutator-example │ │ ├── Android.bp │ │ ├── README.md │ │ ├── lpm_aflpp_custom_mutator_input.cc │ │ ├── lpm_aflpp_custom_mutator_input.h │ │ ├── test.proto │ │ └── vuln.c │ ├── radamsa │ │ ├── GNUmakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── custom_mutator_helpers.h │ │ ├── libradamsa-test.c │ │ ├── libradamsa.c │ │ ├── radamsa-mutator.c │ │ └── radamsa.h │ ├── rust │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── custom_mutator-sys │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── src │ │ │ │ └── lib.rs │ │ │ └── wrapper.h │ │ ├── custom_mutator │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── example │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── example_mutator.rs │ │ └── example_lain │ │ │ ├── Cargo.toml │ │ │ ├── rust-toolchain │ │ │ └── src │ │ │ └── lain_mutator.rs │ └── symcc │ │ ├── Makefile │ │ ├── README.md │ │ ├── symcc.c │ │ └── test_examples │ │ ├── file_test.c │ │ └── stdin_test.c ├── dictionaries │ ├── README.md │ ├── aff.dict │ ├── ass.dict │ ├── atom.dict │ ├── av1_dc.dict │ ├── bash.dict │ ├── bdf.dict │ ├── bmp.dict │ ├── bz2.dict │ ├── creole.dict │ ├── css.dict │ ├── csv.dict │ ├── dds.dict │ ├── djvu.dict │ ├── docommand.dict │ ├── exif.dict │ ├── fbs.dict │ ├── ftp.dict │ ├── gif.dict │ ├── graphviz.dict │ ├── heif.dict │ ├── hoextdown.dict │ ├── html_tags.dict │ ├── http.dict │ ├── icc.dict │ ├── iccprofile.dict │ ├── icns.dict │ ├── initfile.dict │ ├── jbig2.dict │ ├── jpeg.dict │ ├── jpeg2000.dict │ ├── js.dict │ ├── json.dict │ ├── jsonnet.dict │ ├── markdown.dict │ ├── math.dict │ ├── mathml.dict │ ├── mp4.dict │ ├── mysqld.dict │ ├── ogg.dict │ ├── openexr.dict │ ├── otf.dict │ ├── pbm.dict │ ├── pcap.dict │ ├── pdf.dict │ ├── perl.dict │ ├── png.dict │ ├── proj4.dict │ ├── protobuf.dict │ ├── ps.dict │ ├── psd.dict │ ├── regexp.dict │ ├── riff.dict │ ├── rss.dict │ ├── rst.dict │ ├── rtf.dict │ ├── sas.dict │ ├── spss.dict │ ├── sql.dict │ ├── stata.dict │ ├── svg.dict │ ├── tex.dict │ ├── theme-load-fuzz.dict │ ├── tiff.dict │ ├── tokener_parse_ex.dict │ ├── toml.dict │ ├── type42.dict │ ├── url.dict │ ├── utf8.dict │ ├── vcf.dict │ ├── vhd.dict │ ├── vpx_dec.dict │ ├── wav.dict │ ├── webm.dict │ ├── webp.dict │ ├── wkt.dict │ ├── x86.dict │ ├── xml.dict │ ├── xml_UTF_16.dict │ ├── xml_UTF_16BE.dict │ ├── xml_UTF_16LE.dict │ ├── xpath.dict │ ├── xslt.dict │ ├── yaml.dict │ ├── yara.dict │ └── zip.dict ├── docker │ └── Dockerfile ├── docs │ ├── COPYING │ ├── Changelog.md │ ├── FAQ.md │ ├── INSTALL.md │ ├── README.md │ ├── afl-fuzz_approach.md │ ├── best_practices.md │ ├── custom_mutators.md │ ├── env_variables.md │ ├── features.md │ ├── fuzzing_binary-only_targets.md │ ├── fuzzing_in_depth.md │ ├── ideas.md │ ├── important_changes.md │ ├── resources │ │ ├── 0_fuzzing_process_overview.drawio.svg │ │ ├── 1_instrument_target.drawio.svg │ │ ├── 2_prepare_campaign.drawio.svg │ │ ├── 3_fuzz_target.drawio.svg │ │ ├── 4_manage_campaign.drawio.svg │ │ ├── afl_gzip.png │ │ ├── grafana-afl++.json │ │ ├── screenshot.png │ │ └── statsd-grafana.png │ ├── rpc_statsd.md │ ├── third_party_tools.md │ └── tutorials.md ├── dynamic_list.txt ├── dyncfg │ ├── Makefile │ ├── cfgwrapper.h │ ├── dyncfg.h │ └── main.cpp ├── frida_mode │ ├── .gitignore │ ├── DEBUGGING.md │ ├── GNUmakefile │ ├── Makefile │ ├── MapDensity.md │ ├── README.md │ ├── Scripting.md │ ├── addr │ │ └── addr.c │ ├── frida.map │ ├── hook │ │ ├── frida_hook.c │ │ └── qemu_hook.c │ ├── include │ │ ├── asan.h │ │ ├── ctx.h │ │ ├── entry.h │ │ ├── frida_cmplog.h │ │ ├── instrument.h │ │ ├── intercept.h │ │ ├── js.h │ │ ├── lib.h │ │ ├── module.h │ │ ├── output.h │ │ ├── persistent.h │ │ ├── prefetch.h │ │ ├── ranges.h │ │ ├── seccomp.h │ │ ├── stalker.h │ │ ├── stats.h │ │ └── util.h │ ├── many-linux │ │ ├── Dockerfile │ │ ├── GNUmakefile │ │ ├── Makefile │ │ └── README.md │ ├── src │ │ ├── asan │ │ │ ├── asan.c │ │ │ ├── asan_arm32.c │ │ │ ├── asan_arm64.c │ │ │ ├── asan_x64.c │ │ │ └── asan_x86.c │ │ ├── cmplog │ │ │ ├── cmplog.c │ │ │ ├── cmplog_arm32.c │ │ │ ├── cmplog_arm64.c │ │ │ ├── cmplog_x64.c │ │ │ └── cmplog_x86.c │ │ ├── ctx │ │ │ ├── ctx_arm32.c │ │ │ ├── ctx_arm64.c │ │ │ ├── ctx_x64.c │ │ │ └── ctx_x86.c │ │ ├── entry.c │ │ ├── instrument │ │ │ ├── instrument.c │ │ │ ├── instrument_arm32.c │ │ │ ├── instrument_arm64.c │ │ │ ├── instrument_coverage.c │ │ │ ├── instrument_debug.c │ │ │ ├── instrument_x64.c │ │ │ ├── instrument_x64_cache.c │ │ │ └── instrument_x86.c │ │ ├── intercept.c │ │ ├── js │ │ │ ├── api.js │ │ │ ├── js.c │ │ │ └── js_api.c │ │ ├── lib │ │ │ ├── lib.c │ │ │ └── lib_apple.c │ │ ├── main.c │ │ ├── module.c │ │ ├── output.c │ │ ├── persistent │ │ │ ├── persistent.c │ │ │ ├── persistent_arm32.c │ │ │ ├── persistent_arm64.c │ │ │ ├── persistent_x64.c │ │ │ └── persistent_x86.c │ │ ├── prefetch.c │ │ ├── ranges.c │ │ ├── seccomp │ │ │ ├── seccomp.c │ │ │ ├── seccomp_atomic.c │ │ │ ├── seccomp_callback.c │ │ │ ├── seccomp_child.c │ │ │ ├── seccomp_event.c │ │ │ ├── seccomp_filter.c │ │ │ ├── seccomp_print.c │ │ │ ├── seccomp_socket.c │ │ │ └── seccomp_syscall.c │ │ ├── stalker.c │ │ ├── stats │ │ │ ├── stats.c │ │ │ ├── stats_arm32.c │ │ │ ├── stats_arm64.c │ │ │ └── stats_x86_64.c │ │ └── util.c │ ├── test │ │ ├── bloaty │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── cache │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── cache.c │ │ ├── cmov │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── cmov.c │ │ ├── cmplog │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── cmplog.c │ │ │ └── get_section_addrs.py │ │ ├── deferred │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── testinstr.c │ │ ├── dynamic │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── testinstr.c │ │ │ └── testinstrlib.c │ │ ├── entry_point │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── testinstr.c │ │ ├── exe │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── testinstr.c │ │ ├── fasan │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── test.c │ │ ├── freetype2 │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── jpeg │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── js │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── entry.js │ │ │ ├── fuzz.js │ │ │ ├── main.js │ │ │ ├── patch.js │ │ │ ├── replace.js │ │ │ ├── stalker.js │ │ │ ├── test.c │ │ │ └── test2.c │ │ ├── libpcap │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── libxml │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── libxslt │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── osx-lib │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── harness.c │ │ │ ├── harness2.c │ │ │ ├── harness3.c │ │ │ ├── lib.c │ │ │ └── lib2.c │ │ ├── output │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── frida_stderr.txt │ │ │ ├── frida_stdout.txt │ │ │ └── testinstr.c │ │ ├── perf │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── perf.c │ │ ├── persistent_ret │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── test.js │ │ │ └── testinstr.c │ │ ├── png │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── persistent │ │ │ │ ├── GNUmakefile │ │ │ │ ├── Makefile │ │ │ │ └── hook │ │ │ │ ├── GNUmakefile │ │ │ │ ├── Makefile │ │ │ │ ├── cmodule.js │ │ │ │ └── load.js │ │ ├── proj4 │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── python │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── re2 │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── sqlite │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── testinstr │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── testinstr.c │ │ ├── unstable │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── unstable.c │ │ └── vorbis │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ ├── ts │ │ ├── lib │ │ │ └── afl.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── ub1804 │ │ ├── Dockerfile │ │ ├── GNUmakefile │ │ └── Makefile │ ├── update_frida_version.sh │ └── util │ │ ├── bin2c.c │ │ └── get_symbol_addr.sh ├── include │ ├── afl-as.h │ ├── afl-fuzz.h │ ├── afl-prealloc.h │ ├── alloc-inl.h │ ├── android-ashmem.h │ ├── cmplog.h │ ├── common.h │ ├── config.h │ ├── coverage-32.h │ ├── coverage-64.h │ ├── debug.h │ ├── envs.h │ ├── forkserver.h │ ├── hash.h │ ├── list.h │ ├── sharedmem.h │ ├── snapshot-inl.h │ ├── types.h │ └── xxhash.h ├── instrumentation │ ├── COPYING3 │ ├── Makefile │ ├── README.cmplog.md │ ├── README.gcc_plugin.md │ ├── README.instrument_list.md │ ├── README.laf-intel.md │ ├── README.llvm.md │ ├── README.lto.md │ ├── README.persistent_mode.md │ ├── SanitizerCoverageLTO.so.cc │ ├── SanitizerCoveragePCGUARD.so.cc │ ├── afl-compiler-rt.o.c │ ├── afl-fish-fast.c │ ├── afl-fish-pass.so.cc │ ├── afl-gcc-pass.so.cc │ ├── afl-llvm-common.cc │ ├── afl-llvm-common.h │ ├── afl-llvm-dict2file.so.cc │ ├── afl-llvm-lto-instrumentlist.so.cc │ ├── afl-llvm-pass.so.cc │ ├── afl-llvm-rt-lto.o.c │ ├── cmplog-instructions-pass.cc │ ├── cmplog-routines-pass.cc │ ├── cmplog-switches-pass.cc │ ├── compare-transform-pass.so.cc │ ├── ff-all-in-one.c │ ├── llvm-alternative-coverage.h │ ├── split-compares-pass.so.cc │ └── split-switches-pass.so.cc ├── nyx_mode │ ├── LIBNYX_VERSION │ ├── PACKER_VERSION │ ├── QEMU_NYX_VERSION │ ├── README.md │ ├── build_nyx_support.sh │ ├── custom_harness │ │ ├── example.c │ │ ├── fuzz.sh │ │ └── fuzz_no_pt.sh │ └── update_ref.sh ├── qemu_mode │ ├── QEMUAFL_VERSION │ ├── README.md │ ├── README.persistent.md │ ├── README.wine.md │ ├── build_qemu_support.sh │ ├── libcompcov │ │ ├── Makefile │ │ ├── README.md │ │ ├── compcovtest.cc │ │ ├── libcompcov.so.c │ │ └── pmparser.h │ ├── libqasan │ │ ├── Makefile │ │ ├── README.md │ │ ├── dlmalloc.c │ │ ├── hooks.c │ │ ├── libqasan.c │ │ ├── libqasan.h │ │ ├── malloc.c │ │ ├── map_macro.h │ │ ├── patch.c │ │ ├── string.c │ │ └── uninstrument.c │ ├── unsigaction │ │ ├── Makefile │ │ ├── README.md │ │ └── unsigaction.c │ └── update_ref.sh ├── scripts │ └── gen_initial_distance.py ├── src │ ├── README.md │ ├── afl-analyze.c │ ├── afl-as.c │ ├── afl-cc.c │ ├── afl-common.c │ ├── afl-fishfuzz.cc │ ├── afl-forkserver.c │ ├── afl-fuzz-bitmap.c │ ├── afl-fuzz-cmplog.c │ ├── afl-fuzz-debug.c │ ├── afl-fuzz-extras.c │ ├── afl-fuzz-init.c │ ├── afl-fuzz-mutators.c │ ├── afl-fuzz-one.c │ ├── afl-fuzz-python.c │ ├── afl-fuzz-queue.c │ ├── afl-fuzz-redqueen.c │ ├── afl-fuzz-run.c │ ├── afl-fuzz-state.c │ ├── afl-fuzz-stats.c │ ├── afl-fuzz-statsd.c │ ├── afl-fuzz.c │ ├── afl-gotcpu.c │ ├── afl-ld-lto.c │ ├── afl-performance.c │ ├── afl-sharedmem.c │ ├── afl-showmap.c │ └── afl-tmin.c ├── test-instr.c ├── test │ ├── checkcommit.sh │ ├── test-all.sh │ ├── test-basic.sh │ ├── test-cmplog.c │ ├── test-compcov.c │ ├── test-custom-mutator.c │ ├── test-custom-mutators.sh │ ├── test-dlopen.c │ ├── test-floatingpoint.c │ ├── test-fpExtra.sh │ ├── test-fp_Infcases.c │ ├── test-fp_NaNcases.c │ ├── test-fp_cases.c │ ├── test-fp_minusZerocases.c │ ├── test-frida-mode.sh │ ├── test-gcc-plugin.sh │ ├── test-int_cases.c │ ├── test-libextensions.sh │ ├── test-llvm-lto.sh │ ├── test-llvm.sh │ ├── test-multiple-mutators.c │ ├── test-performance.sh │ ├── test-post.sh │ ├── test-pre.sh │ ├── test-qemu-mode.sh │ ├── test-uint_cases.c │ ├── test-unicorn-mode.sh │ ├── test-unittests.sh │ ├── test-unsigaction.c │ └── unittests │ │ ├── unit_hash.c │ │ ├── unit_list.c │ │ ├── unit_maybe_alloc.c │ │ ├── unit_preallocable.c │ │ └── unit_rand.c ├── testcases │ ├── README.md │ ├── archives │ │ ├── common │ │ │ ├── ar │ │ │ │ └── small_archive.a │ │ │ ├── bzip2 │ │ │ │ └── small_archive.bz2 │ │ │ ├── cab │ │ │ │ └── small_archive.cab │ │ │ ├── compress │ │ │ │ └── small_archive.Z │ │ │ ├── cpio │ │ │ │ └── small_archive.cpio │ │ │ ├── gzip │ │ │ │ └── small_archive.gz │ │ │ ├── lzo │ │ │ │ └── small_archive.lzo │ │ │ ├── rar │ │ │ │ └── small_archive.rar │ │ │ ├── tar │ │ │ │ └── small_archive.tar │ │ │ ├── xz │ │ │ │ └── small_archive.xz │ │ │ └── zip │ │ │ │ └── small_archive.zip │ │ └── exotic │ │ │ ├── arj │ │ │ └── small_archive.arj │ │ │ ├── lha │ │ │ └── small_archive.lha │ │ │ ├── lrzip │ │ │ └── small_archive.lrz │ │ │ ├── lzip │ │ │ └── small_archive.lz │ │ │ ├── lzma │ │ │ └── small_archive.lzma │ │ │ ├── rzip │ │ │ └── small_archive.rz │ │ │ └── zoo │ │ │ └── small_archive.zoo │ ├── images │ │ ├── bmp │ │ │ └── not_kitty.bmp │ │ ├── gif │ │ │ └── not_kitty.gif │ │ ├── ico │ │ │ └── not_kitty.ico │ │ ├── jp2 │ │ │ └── not_kitty.jp2 │ │ ├── jpeg │ │ │ └── not_kitty.jpg │ │ ├── jxr │ │ │ └── not_kitty.jxr │ │ ├── png │ │ │ ├── not_kitty.png │ │ │ ├── not_kitty_alpha.png │ │ │ ├── not_kitty_gamma.png │ │ │ └── not_kitty_icc.png │ │ ├── tiff │ │ │ └── not_kitty.tiff │ │ └── webp │ │ │ └── not_kitty.webp │ ├── multimedia │ │ └── h264 │ │ │ └── small_movie.mp4 │ └── others │ │ ├── elf │ │ └── small_exec.elf │ │ ├── js │ │ └── small_script.js │ │ ├── pcap │ │ └── small_capture.pcap │ │ ├── pdf │ │ └── small.pdf │ │ ├── rtf │ │ └── small_document.rtf │ │ ├── sql │ │ └── simple_queries.sql │ │ ├── text │ │ └── hello_world.txt │ │ └── xml │ │ └── small_document.xml ├── types.h ├── unicorn_mode │ ├── README.md │ ├── UNICORNAFL_VERSION │ ├── build_unicorn_support.sh │ ├── helper_scripts │ │ ├── ida_context_loader.py │ │ ├── unicorn_dumper_gdb.py │ │ ├── unicorn_dumper_ida.py │ │ ├── unicorn_dumper_lldb.py │ │ ├── unicorn_dumper_pwndbg.py │ │ └── unicorn_loader.py │ ├── samples │ │ ├── c │ │ │ ├── .gitignore │ │ │ ├── COMPILE.md │ │ │ ├── Makefile │ │ │ ├── harness.c │ │ │ ├── persistent_target.c │ │ │ ├── persistent_target_x86_64 │ │ │ ├── sample_all.sh │ │ │ ├── sample_inputs │ │ │ │ ├── sample1.bin │ │ │ │ ├── sample2.bin │ │ │ │ ├── sample3.bin │ │ │ │ ├── sample4.bin │ │ │ │ └── sample5.bin │ │ │ └── simple_target_x86_64 │ │ ├── compcov_x64 │ │ │ ├── COMPILE.md │ │ │ ├── compcov_target.bin │ │ │ ├── compcov_target.c │ │ │ ├── compcov_target.elf │ │ │ ├── compcov_test_harness.py │ │ │ └── sample_inputs │ │ │ │ └── sample1.bin │ │ ├── persistent │ │ │ ├── .gitignore │ │ │ ├── COMPILE.md │ │ │ ├── Makefile │ │ │ ├── harness.c │ │ │ ├── persistent_target │ │ │ ├── persistent_target.c │ │ │ ├── persistent_target_x86_64 │ │ │ ├── sample_all.sh │ │ │ ├── sample_inputs │ │ │ │ ├── sample1.bin │ │ │ │ ├── sample2.bin │ │ │ │ ├── sample3.bin │ │ │ │ ├── sample4.bin │ │ │ │ └── sample5.bin │ │ │ ├── simple_target_noncrashing.c │ │ │ └── simple_target_x86_64 │ │ ├── python_simple │ │ │ ├── COMPILE.md │ │ │ ├── sample_inputs │ │ │ │ ├── sample1.bin │ │ │ │ ├── sample2.bin │ │ │ │ ├── sample3.bin │ │ │ │ ├── sample4.bin │ │ │ │ └── sample5.bin │ │ │ ├── simple_target.bin │ │ │ ├── simple_target.c │ │ │ ├── simple_test_harness.py │ │ │ └── simple_test_harness_alt.py │ │ └── speedtest │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── c │ │ │ ├── Makefile │ │ │ └── harness.c │ │ │ ├── get_offsets.py │ │ │ ├── python │ │ │ ├── Makefile │ │ │ └── harness.py │ │ │ ├── rust │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ └── main.rs │ │ │ ├── sample_inputs │ │ │ └── a │ │ │ └── target.c │ └── update_uc_ref.sh └── utils │ ├── README.md │ ├── afl_network_proxy │ ├── GNUmakefile │ ├── Makefile │ ├── README.md │ ├── afl-network-client.c │ └── afl-network-server.c │ ├── afl_proxy │ ├── Makefile │ ├── README.md │ └── afl-proxy.c │ ├── afl_untracer │ ├── Makefile │ ├── README.md │ ├── TODO │ ├── afl-untracer.c │ ├── ghidra_get_patchpoints.java │ ├── ida_get_patchpoints.py │ ├── libtestinstr.c │ └── patches.txt │ ├── aflpp_driver │ ├── GNUmakefile │ ├── Makefile │ ├── README.md │ ├── aflpp_driver.c │ ├── aflpp_driver_test.c │ ├── aflpp_qemu_driver.c │ └── aflpp_qemu_driver_hook.c │ ├── analysis_scripts │ └── queue2csv.sh │ ├── argv_fuzzing │ ├── Makefile │ ├── README.md │ ├── argv-fuzz-inl.h │ └── argvfuzz.c │ ├── asan_cgroups │ └── limit_memory.sh │ ├── autodict_ql │ ├── autodict-ql.py │ ├── build-codeql.sh │ ├── litan.py │ ├── litool.ql │ ├── memcmp-str.ql │ ├── memcmp-strings.py │ ├── qlpack.yml │ ├── readme.md │ ├── stan-strings.py │ ├── strcmp-str.ql │ ├── strcmp-strings.py │ ├── strncmp-str.ql │ ├── strncmp-strings.py │ └── strtool.ql │ ├── bash_shellshock │ └── shellshock-fuzz.diff │ ├── canvas_harness │ └── canvas_harness.html │ ├── crash_triage │ └── triage_crashes.sh │ ├── defork │ ├── Makefile │ ├── README.md │ ├── defork.c │ └── forking_target.c │ ├── distributed_fuzzing │ └── sync_script.sh │ ├── libdislocator │ ├── Makefile │ ├── README.md │ └── libdislocator.so.c │ ├── libpng_no_checksum │ └── libpng-nocrc.patch │ ├── libtokencap │ ├── Makefile │ ├── README.md │ └── libtokencap.so.c │ ├── optimin │ ├── .gitignore │ ├── CMakeLists.txt │ ├── EVALMAXSAT_VERSION │ ├── README.md │ ├── build_optimin.sh │ └── src │ │ ├── CMakeLists.txt │ │ └── OptiMin.cpp │ ├── persistent_mode │ ├── Makefile │ ├── persistent_demo.c │ ├── persistent_demo_new.c │ └── test-instr.c │ ├── plot_ui │ ├── Makefile │ ├── README.md │ └── afl-plot-ui.c │ ├── qbdi_mode │ ├── README.md │ ├── assets │ │ └── screen1.png │ ├── build.sh │ ├── demo-so.c │ └── template.cpp │ ├── qemu_persistent_hook │ ├── Makefile │ ├── README.md │ ├── read_into_rdi.c │ └── test.c │ └── socket_fuzzing │ ├── Makefile │ ├── README.md │ └── socketfuzz.c ├── FF_AFL ├── .gitignore ├── .travis.yml ├── .travis │ └── check_fuzzer_stats.sh ├── Android.bp ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── afl-analyze.c ├── afl-as.c ├── afl-as.h ├── afl-cmin ├── afl-fuzz.c ├── afl-gcc.c ├── afl-gotcpu.c ├── afl-plot ├── afl-showmap.c ├── afl-tmin.c ├── afl-whatsup ├── alloc-inl.h ├── android-ashmem.h ├── cfgwrapper.h ├── config.h ├── debug.h ├── dictionaries │ ├── README.dictionaries │ ├── gif.dict │ ├── html_tags.dict │ ├── jpeg.dict │ ├── js.dict │ ├── json.dict │ ├── pdf.dict │ ├── perl.dict │ ├── png.dict │ ├── regexp.dict │ ├── sql.dict │ ├── tiff.dict │ ├── webp.dict │ └── xml.dict ├── docker │ └── Dockerfile ├── docs │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── QuickStartGuide.txt │ ├── env_variables.txt │ ├── historical_notes.txt │ ├── life_pro_tips.txt │ ├── notes_for_asan.txt │ ├── parallel_fuzzing.txt │ ├── perf_tips.txt │ ├── sister_projects.txt │ ├── status_screen.txt │ ├── technical_details.txt │ ├── visualization │ │ └── afl_gzip.png │ └── vuln_samples │ │ ├── bash-cmd-exec.var │ │ ├── bash-uninit-mem.var │ │ ├── ffmpeg-h264-bad-ptr-800m.mp4 │ │ ├── ffmpeg-h264-bad-read.mp4 │ │ ├── ffmpeg-h264-call-stack-overflow.mp4 │ │ ├── file-fpu-exception.elf │ │ ├── firefox-bmp-leak.bmp │ │ ├── firefox-chrome-leak.jpg │ │ ├── firefox-gif-leak.gif │ │ ├── firefox-gif-leak2.gif │ │ ├── jxrlib-crash.jxr │ │ ├── jxrlib-crash2.jxr │ │ ├── jxrlib-crash3.jxr │ │ ├── jxrlib-crash4.jxr │ │ ├── lesspipe-cpio-bad-write.cpio │ │ ├── libjpeg-sos-leak.jpg │ │ ├── libjpeg-turbo-dht-leak.jpg │ │ ├── libtiff-bad-write.tif │ │ ├── libtiff-uninit-mem.tif │ │ ├── libtiff-uninit-mem2.tif │ │ ├── libtiff-uninit-mem3.tif │ │ ├── libtiff-uninit-mem4.tif │ │ ├── libxml2-bad-read.xml │ │ ├── msie-dht-leak.jpg │ │ ├── msie-jxr-mem-leak.jxr │ │ ├── msie-png-mem-leak.png │ │ ├── msie-tiff-mem-leak.tif │ │ ├── msie-zlib-dos.png │ │ ├── openssl-null-ptr.der │ │ ├── openssl-null-ptr2.der │ │ ├── photoshop-mem-leak.jpg │ │ ├── sqlite-bad-free.sql │ │ ├── sqlite-bad-ptr.sql │ │ ├── sqlite-bad-ptr2.sql │ │ ├── sqlite-bad-ptr3.sql │ │ ├── sqlite-heap-overflow.sql │ │ ├── sqlite-heap-overwrite.sql │ │ ├── sqlite-negative-memset.sql │ │ ├── sqlite-null-ptr1.sql │ │ ├── sqlite-null-ptr10.sql │ │ ├── sqlite-null-ptr11.sql │ │ ├── sqlite-null-ptr12.sql │ │ ├── sqlite-null-ptr13.sql │ │ ├── sqlite-null-ptr14.sql │ │ ├── sqlite-null-ptr15.sql │ │ ├── sqlite-null-ptr2.sql │ │ ├── sqlite-null-ptr3.sql │ │ ├── sqlite-null-ptr4.sql │ │ ├── sqlite-null-ptr5.sql │ │ ├── sqlite-null-ptr6.sql │ │ ├── sqlite-null-ptr7.sql │ │ ├── sqlite-null-ptr8.sql │ │ ├── sqlite-null-ptr9.sql │ │ ├── sqlite-oob-read.sql │ │ ├── sqlite-oob-write.sql │ │ ├── sqlite-stack-buf-overflow.sql │ │ ├── sqlite-stack-exhaustion.sql │ │ ├── sqlite-unint-mem.sql │ │ ├── sqlite-use-after-free.sql │ │ ├── strings-bfd-badptr.elf │ │ ├── strings-bfd-badptr2.elf │ │ ├── strings-stack-overflow │ │ ├── strings-unchecked-ctr.elf │ │ ├── tcpdump-arp-crash.pcap │ │ ├── tcpdump-ppp-crash.pcap │ │ ├── unrtf-arbitrary-read.rtf │ │ └── unzip-t-mem-corruption.zip ├── dyncfg │ ├── Makefile │ ├── dyncfg.h │ ├── main.cpp │ └── runtime.o.cc ├── experimental │ ├── README.experiments │ ├── argv_fuzzing │ │ ├── argv-fuzz-inl.h │ │ ├── test.c │ │ └── test.txt │ ├── asan_cgroups │ │ └── limit_memory.sh │ ├── bash_shellshock │ │ └── shellshock-fuzz.diff │ ├── canvas_harness │ │ └── canvas_harness.html │ ├── crash_triage │ │ └── triage_crashes.sh │ ├── distributed_fuzzing │ │ └── sync_script.sh │ ├── libpng_no_checksum │ │ └── libpng-nocrc.patch │ ├── persistent_demo │ │ └── persistent_demo.c │ └── post_library │ │ ├── post_library.so.c │ │ └── post_library_png.so.c ├── hash.h ├── libdislocator │ ├── Makefile │ ├── README.dislocator │ └── libdislocator.so.c ├── libtokencap │ ├── Makefile │ ├── README.tokencap │ └── libtokencap.so.c ├── llvm_mode │ ├── Makefile │ ├── README.llvm │ ├── afl-clang-fast.c │ ├── afl-llvm-pass.so.cc │ ├── afl-llvm-rt.o.c │ └── ff-all-in-one.c ├── qemu_mode │ ├── README.qemu │ ├── build_qemu_support.sh │ └── patches │ │ ├── afl-qemu-cpu-inl.h │ │ ├── configure.diff │ │ ├── cpu-exec.diff │ │ ├── elfload.diff │ │ ├── memfd.diff │ │ └── syscall.diff ├── scripts │ └── gen_initial_distance.py ├── test-instr.c ├── test-libfuzzer-target.c ├── testcases │ ├── README.testcases │ ├── archives │ │ ├── common │ │ │ ├── ar │ │ │ │ └── small_archive.a │ │ │ ├── bzip2 │ │ │ │ └── small_archive.bz2 │ │ │ ├── cab │ │ │ │ └── small_archive.cab │ │ │ ├── compress │ │ │ │ └── small_archive.Z │ │ │ ├── cpio │ │ │ │ └── small_archive.cpio │ │ │ ├── gzip │ │ │ │ └── small_archive.gz │ │ │ ├── lzo │ │ │ │ └── small_archive.lzo │ │ │ ├── rar │ │ │ │ └── small_archive.rar │ │ │ ├── tar │ │ │ │ └── small_archive.tar │ │ │ ├── xz │ │ │ │ └── small_archive.xz │ │ │ └── zip │ │ │ │ └── small_archive.zip │ │ └── exotic │ │ │ ├── arj │ │ │ └── small_archive.arj │ │ │ ├── lha │ │ │ └── small_archive.lha │ │ │ ├── lrzip │ │ │ └── small_archive.lrz │ │ │ ├── lzip │ │ │ └── small_archive.lz │ │ │ ├── lzma │ │ │ └── small_archive.lzma │ │ │ ├── rzip │ │ │ └── small_archive.rz │ │ │ └── zoo │ │ │ └── small_archive.zoo │ ├── images │ │ ├── bmp │ │ │ └── not_kitty.bmp │ │ ├── gif │ │ │ └── not_kitty.gif │ │ ├── ico │ │ │ └── not_kitty.ico │ │ ├── jp2 │ │ │ └── not_kitty.jp2 │ │ ├── jpeg │ │ │ └── not_kitty.jpg │ │ ├── jxr │ │ │ └── not_kitty.jxr │ │ ├── png │ │ │ ├── not_kitty.png │ │ │ ├── not_kitty_alpha.png │ │ │ ├── not_kitty_gamma.png │ │ │ └── not_kitty_icc.png │ │ ├── tiff │ │ │ └── not_kitty.tiff │ │ └── webp │ │ │ └── not_kitty.webp │ ├── multimedia │ │ └── h264 │ │ │ └── small_movie.mp4 │ └── others │ │ ├── elf │ │ └── small_exec.elf │ │ ├── js │ │ └── small_script.js │ │ ├── pcap │ │ └── small_capture.pcap │ │ ├── pdf │ │ └── small.pdf │ │ ├── regexp │ │ ├── reg1 │ │ ├── reg2 │ │ ├── reg3 │ │ └── reg4 │ │ ├── rtf │ │ └── small_document.rtf │ │ ├── sql │ │ └── simple_queries.sql │ │ ├── text │ │ └── hello_world.txt │ │ └── xml │ │ └── small_document.xml └── types.h ├── README.md └── paper ├── README.md ├── artifact ├── README.md ├── asan │ ├── Dockerfile │ ├── build │ │ ├── MP4Box.sh │ │ ├── catdoc.sh │ │ ├── exiv.sh │ │ ├── flvmeta.sh │ │ ├── gif2tga.sh │ │ ├── lou_checktable.sh │ │ ├── nasm.sh │ │ ├── nm-new.sh │ │ ├── tcpdump.sh │ │ ├── tcpprep.sh │ │ └── tiff2pdf.sh │ ├── runtime │ │ └── corpus │ │ │ ├── asm │ │ │ └── test67.asm │ │ │ ├── doc │ │ │ └── case │ │ │ ├── elf │ │ │ └── small_exec.elf │ │ │ ├── flv │ │ │ ├── barsandtone.flv │ │ │ └── flash.flv │ │ │ ├── font │ │ │ └── Se-Se-g1.utb │ │ │ ├── gif │ │ │ └── not_kitty.gif │ │ │ ├── mp4 │ │ │ └── small_movie.mp4 │ │ │ ├── pcap │ │ │ └── small_capture.pcap │ │ │ ├── png │ │ │ ├── not_kitty.png │ │ │ ├── not_kitty_alpha.png │ │ │ ├── not_kitty_gamma.png │ │ │ └── not_kitty_icc.png │ │ │ └── tiff │ │ │ └── not_kitty.tiff │ └── scripts │ │ ├── analysis.py │ │ ├── asan.crash.json │ │ ├── asan.queue.json │ │ ├── calc_pval.py │ │ ├── copy_results.py │ │ ├── generate_runtime.py │ │ ├── generate_script.py │ │ └── print_result.py ├── qsym │ ├── Dockerfile │ ├── build │ │ ├── djpeg.sh │ │ ├── jasper.sh │ │ ├── objdump.sh │ │ ├── readelf.sh │ │ ├── tcpdump.sh │ │ ├── tiff2pdf.sh │ │ ├── tiff2ps.sh │ │ └── xmllint.sh │ ├── runtime │ │ └── corpus │ │ │ ├── elf │ │ │ └── small_exec.elf │ │ │ ├── jp2 │ │ │ └── not_kitty.jp2 │ │ │ ├── jpeg │ │ │ └── not_kitty.jpg │ │ │ ├── pcap │ │ │ └── small_capture.pcap │ │ │ ├── tiff │ │ │ └── not_kitty.tiff │ │ │ └── xml │ │ │ └── small_document.xml │ └── scripts │ │ ├── analysis.py │ │ ├── copy_results.py │ │ ├── generate_runtime.py │ │ ├── generate_script.py │ │ ├── print_result.py │ │ └── ubsan.queue.json ├── two-stage │ ├── Dockerfile │ ├── build │ │ ├── cflow.sh │ │ ├── cxxfilt.sh │ │ ├── dwarfdump.sh │ │ ├── mujs.sh │ │ ├── mupdf.sh │ │ ├── tic.sh │ │ └── w3m.sh │ ├── runtime │ │ └── corpus │ │ │ ├── c │ │ │ └── depmap.c │ │ │ ├── elf │ │ │ └── small_exec.elf │ │ │ ├── html │ │ │ ├── a1.html │ │ │ ├── a2.html │ │ │ ├── allentity.html │ │ │ ├── dl.html │ │ │ ├── name_entity_1.html │ │ │ ├── name_entity_2.html │ │ │ ├── q1.html │ │ │ ├── q2.html │ │ │ ├── q3.html │ │ │ ├── q4.html │ │ │ ├── q5.html │ │ │ └── q6.html │ │ │ ├── js │ │ │ └── small_script.js │ │ │ ├── pdf │ │ │ └── small.pdf │ │ │ └── txt │ │ │ └── seed │ └── scripts │ │ ├── analysis.py │ │ ├── asan.crash.json │ │ ├── asan.queue.json │ │ ├── calc_pval.py │ │ ├── copy_results.py │ │ ├── generate_runtime.py │ │ ├── generate_script.py │ │ └── print_result.py └── ubsan │ ├── Dockerfile │ ├── build │ ├── djpeg.sh │ ├── jasper.sh │ ├── objdump.sh │ ├── readelf.sh │ ├── tcpdump.sh │ ├── tiff2pdf.sh │ ├── tiff2ps.sh │ └── xmllint.sh │ ├── runtime │ └── corpus │ │ ├── elf │ │ └── small_exec.elf │ │ ├── jp2 │ │ └── not_kitty.jp2 │ │ ├── jpeg │ │ └── not_kitty.jpg │ │ ├── pcap │ │ └── small_capture.pcap │ │ ├── tiff │ │ └── not_kitty.tiff │ │ └── xml │ │ └── small_document.xml │ └── scripts │ ├── analysis.py │ ├── asan.crash.json │ ├── asan.queue.json │ ├── calc_pval.py │ ├── copy_results.py │ ├── generate_runtime.py │ ├── generate_script.py │ └── print_result.py ├── fuzzbench ├── aflplusplus_fishfuzz │ ├── builder.Dockerfile │ ├── fuzzer.py │ └── runner.Dockerfile └── fishfuzz_afl │ ├── builder.Dockerfile │ ├── fuzzer.py │ └── runner.Dockerfile ├── hyperparam ├── hyperparam study-raretarget.csv └── hyperparam study-timeout.csv ├── p-value ├── asan_cov.csv ├── asan_reach.csv ├── p-val-calc.py ├── two_stage_cov.csv ├── two_stage_reach.csv ├── ubsan_cov.csv ├── ubsan_reach.csv └── ubsan_san.csv ├── preview └── FishFuzz-preview.png └── vuln └── vuln.md /FF_AFL++/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.clang-format -------------------------------------------------------------------------------- /FF_AFL++/.custom-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.custom-format.py -------------------------------------------------------------------------------- /FF_AFL++/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.dockerignore -------------------------------------------------------------------------------- /FF_AFL++/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.github/FUNDING.yml -------------------------------------------------------------------------------- /FF_AFL++/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /FF_AFL++/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.github/workflows/ci.yml -------------------------------------------------------------------------------- /FF_AFL++/.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /FF_AFL++/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/.gitmodules -------------------------------------------------------------------------------- /FF_AFL++/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/Android.bp -------------------------------------------------------------------------------- /FF_AFL++/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/CITATION.cff -------------------------------------------------------------------------------- /FF_AFL++/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/CONTRIBUTING.md -------------------------------------------------------------------------------- /FF_AFL++/Changelog.md: -------------------------------------------------------------------------------- 1 | docs/Changelog.md -------------------------------------------------------------------------------- /FF_AFL++/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/Dockerfile -------------------------------------------------------------------------------- /FF_AFL++/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/GNUmakefile.gcc_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/GNUmakefile.gcc_plugin -------------------------------------------------------------------------------- /FF_AFL++/GNUmakefile.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/GNUmakefile.llvm -------------------------------------------------------------------------------- /FF_AFL++/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/LICENSE -------------------------------------------------------------------------------- /FF_AFL++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/Makefile -------------------------------------------------------------------------------- /FF_AFL++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/README.md -------------------------------------------------------------------------------- /FF_AFL++/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/TODO.md -------------------------------------------------------------------------------- /FF_AFL++/afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-cmin -------------------------------------------------------------------------------- /FF_AFL++/afl-cmin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-cmin.bash -------------------------------------------------------------------------------- /FF_AFL++/afl-persistent-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-persistent-config -------------------------------------------------------------------------------- /FF_AFL++/afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-plot -------------------------------------------------------------------------------- /FF_AFL++/afl-system-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-system-config -------------------------------------------------------------------------------- /FF_AFL++/afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-whatsup -------------------------------------------------------------------------------- /FF_AFL++/afl-wine-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/afl-wine-trace -------------------------------------------------------------------------------- /FF_AFL++/config.h: -------------------------------------------------------------------------------- 1 | include/config.h -------------------------------------------------------------------------------- /FF_AFL++/coresight_mode/.gitignore: -------------------------------------------------------------------------------- 1 | .local 2 | glibc* 3 | -------------------------------------------------------------------------------- /FF_AFL++/coresight_mode/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/coresight_mode/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/coresight_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/coresight_mode/Makefile -------------------------------------------------------------------------------- /FF_AFL++/coresight_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/coresight_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/Android.bp -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/examples/Makefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/examples/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/examples/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/examples/common.py -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/examples/example.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/examples/example.py -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/JSONC_VERSION: -------------------------------------------------------------------------------- 1 | af8dd4a307e7b837f9fa2959549548ace4afe08b 2 | -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/gramfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/gramfuzz.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/gramfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/gramfuzz.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/hashmap.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/hashmap.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/test.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/test.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/utarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/utarray.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/gramatron/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/gramatron/uthash.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/grammar_mutator/GRAMMAR_VERSION: -------------------------------------------------------------------------------- 1 | ff4e5a2 2 | -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/Makefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/honggfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/honggfuzz.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/honggfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/honggfuzz.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/input.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/libhfcommon/log.h: -------------------------------------------------------------------------------- 1 | common.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/libhfcommon/util.h: -------------------------------------------------------------------------------- 1 | common.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/mangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/mangle.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/honggfuzz/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/honggfuzz/mangle.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libafl_base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libafl_base/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libafl_base/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libafl_base/Cargo.toml -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libafl_base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libafl_base/Makefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libafl_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libafl_base/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libafl_base/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libafl_base/src/lib.rs -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerDefs.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerFork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerFork.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerIO.cpp -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerIO.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerMerge.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerSHA1.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/FuzzerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/FuzzerUtil.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/Makefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/libfuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/libfuzzer.cpp -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/libfuzzer/libfuzzer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/libfuzzer/libfuzzer.inc -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/radamsa/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/radamsa/LICENSE -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/radamsa/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/custom_mutator_helpers.h: -------------------------------------------------------------------------------- 1 | ../examples/custom_mutator_helpers.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/libradamsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/radamsa/libradamsa.c -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/radamsa/radamsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/radamsa/radamsa.h -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/rust/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/rust/Cargo.toml -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/rust/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/rust/example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/rust/example/Cargo.toml -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/rust/example_lain/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/symcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/symcc/Makefile -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/symcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/symcc/README.md -------------------------------------------------------------------------------- /FF_AFL++/custom_mutators/symcc/symcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/custom_mutators/symcc/symcc.c -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/README.md -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/aff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/aff.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/ass.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/ass.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/atom.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/atom.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/av1_dc.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/av1_dc.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/bash.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/bash.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/bdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/bdf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/bmp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/bmp.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/bz2.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/bz2.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/creole.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/creole.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/css.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/css.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/csv.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/csv.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/dds.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/dds.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/djvu.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/djvu.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/docommand.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/docommand.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/exif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/exif.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/fbs.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/fbs.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/ftp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/ftp.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/gif.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/graphviz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/graphviz.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/heif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/heif.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/hoextdown.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/hoextdown.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/http.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/http.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/icc.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/icc.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/iccprofile.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/iccprofile.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/icns.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/icns.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/initfile.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/initfile.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/jbig2.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/jbig2.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/jpeg2000.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/jpeg2000.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/js.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/json.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/jsonnet.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/jsonnet.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/markdown.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/markdown.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/math.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/math.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/mathml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/mathml.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/mp4.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/mp4.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/mysqld.dict: -------------------------------------------------------------------------------- 1 | user="root" 2 | -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/ogg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/ogg.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/openexr.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/openexr.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/otf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/otf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/pbm.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/pbm.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/pcap.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/pcap.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/pdf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/perl.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/perl.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/png.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/proj4.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/proj4.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/protobuf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/protobuf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/ps.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/ps.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/psd.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/psd.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/regexp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/regexp.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/riff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/riff.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/rss.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/rss.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/rst.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/rst.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/rtf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/rtf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/sas.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/sas.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/spss.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/spss.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/sql.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/stata.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/stata.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/svg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/svg.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/tex.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/tex.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/theme-load-fuzz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/theme-load-fuzz.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/tiff.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/tokener_parse_ex.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/tokener_parse_ex.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/toml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/toml.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/type42.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/type42.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/url.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/url.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/utf8.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/utf8.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/vcf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/vcf.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/vhd.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/vhd.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/vpx_dec.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/vpx_dec.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/wav.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/wav.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/webm.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/webm.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/webp.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/wkt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/wkt.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/x86.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/x86.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xml.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xml_UTF_16.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xml_UTF_16.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xml_UTF_16BE.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xml_UTF_16BE.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xml_UTF_16LE.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xml_UTF_16LE.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xpath.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xpath.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/xslt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/xslt.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/yaml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/yaml.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/yara.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/yara.dict -------------------------------------------------------------------------------- /FF_AFL++/dictionaries/zip.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dictionaries/zip.dict -------------------------------------------------------------------------------- /FF_AFL++/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docker/Dockerfile -------------------------------------------------------------------------------- /FF_AFL++/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/COPYING -------------------------------------------------------------------------------- /FF_AFL++/docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/Changelog.md -------------------------------------------------------------------------------- /FF_AFL++/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/FAQ.md -------------------------------------------------------------------------------- /FF_AFL++/docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/INSTALL.md -------------------------------------------------------------------------------- /FF_AFL++/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/README.md -------------------------------------------------------------------------------- /FF_AFL++/docs/afl-fuzz_approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/afl-fuzz_approach.md -------------------------------------------------------------------------------- /FF_AFL++/docs/best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/best_practices.md -------------------------------------------------------------------------------- /FF_AFL++/docs/custom_mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/custom_mutators.md -------------------------------------------------------------------------------- /FF_AFL++/docs/env_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/env_variables.md -------------------------------------------------------------------------------- /FF_AFL++/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/features.md -------------------------------------------------------------------------------- /FF_AFL++/docs/fuzzing_binary-only_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/fuzzing_binary-only_targets.md -------------------------------------------------------------------------------- /FF_AFL++/docs/fuzzing_in_depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/fuzzing_in_depth.md -------------------------------------------------------------------------------- /FF_AFL++/docs/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/ideas.md -------------------------------------------------------------------------------- /FF_AFL++/docs/important_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/important_changes.md -------------------------------------------------------------------------------- /FF_AFL++/docs/resources/3_fuzz_target.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/resources/3_fuzz_target.drawio.svg -------------------------------------------------------------------------------- /FF_AFL++/docs/resources/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/resources/afl_gzip.png -------------------------------------------------------------------------------- /FF_AFL++/docs/resources/grafana-afl++.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/resources/grafana-afl++.json -------------------------------------------------------------------------------- /FF_AFL++/docs/resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/resources/screenshot.png -------------------------------------------------------------------------------- /FF_AFL++/docs/resources/statsd-grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/resources/statsd-grafana.png -------------------------------------------------------------------------------- /FF_AFL++/docs/rpc_statsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/rpc_statsd.md -------------------------------------------------------------------------------- /FF_AFL++/docs/third_party_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/third_party_tools.md -------------------------------------------------------------------------------- /FF_AFL++/docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/docs/tutorials.md -------------------------------------------------------------------------------- /FF_AFL++/dynamic_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dynamic_list.txt -------------------------------------------------------------------------------- /FF_AFL++/dyncfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dyncfg/Makefile -------------------------------------------------------------------------------- /FF_AFL++/dyncfg/cfgwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dyncfg/cfgwrapper.h -------------------------------------------------------------------------------- /FF_AFL++/dyncfg/dyncfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dyncfg/dyncfg.h -------------------------------------------------------------------------------- /FF_AFL++/dyncfg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/dyncfg/main.cpp -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/DEBUGGING.md -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/MapDensity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/MapDensity.md -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/Scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/Scripting.md -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/addr/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/addr/addr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/frida.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/frida.map -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/hook/frida_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/hook/frida_hook.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/hook/qemu_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/hook/qemu_hook.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/asan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/asan.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/ctx.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/entry.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/frida_cmplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/frida_cmplog.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/instrument.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/intercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/intercept.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/js.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/lib.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/module.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/output.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/persistent.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/prefetch.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/ranges.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/seccomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/seccomp.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/stalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/stalker.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/stats.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/include/util.h -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/many-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/many-linux/Dockerfile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/many-linux/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/many-linux/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/many-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/many-linux/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/many-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/many-linux/README.md -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/asan/asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/asan/asan.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/asan/asan_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/asan/asan_arm32.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/asan/asan_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/asan/asan_arm64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/asan/asan_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/asan/asan_x64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/asan/asan_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/asan/asan_x86.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/cmplog/cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/cmplog/cmplog.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/cmplog/cmplog_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/cmplog/cmplog_arm32.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/cmplog/cmplog_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/cmplog/cmplog_arm64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/cmplog/cmplog_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/cmplog/cmplog_x64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/cmplog/cmplog_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/cmplog/cmplog_x86.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/ctx/ctx_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/ctx/ctx_arm32.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/ctx/ctx_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/ctx/ctx_arm64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/ctx/ctx_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/ctx/ctx_x64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/ctx/ctx_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/ctx/ctx_x86.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/entry.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/instrument/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/instrument/instrument.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/intercept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/intercept.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/js/api.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/js/js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/js/js.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/js/js_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/js/js_api.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/lib/lib.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/lib/lib_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/lib/lib_apple.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/main.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/module.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/output.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/persistent/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/persistent/persistent.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/prefetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/prefetch.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/ranges.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_atomic.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_child.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_event.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_filter.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_print.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/seccomp/seccomp_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/seccomp/seccomp_socket.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/stalker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/stalker.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/stats/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/stats/stats.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/stats/stats_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/stats/stats_arm32.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/stats/stats_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/stats/stats_arm64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/stats/stats_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/stats/stats_x86_64.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/src/util.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/bloaty/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/bloaty/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/bloaty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/bloaty/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cache/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cache/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cache/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cache/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cache/cache.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmov/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmov/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmov/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmov/cmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmov/cmov.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmplog/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmplog/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmplog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmplog/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/cmplog/cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/cmplog/cmplog.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/deferred/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/deferred/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/deferred/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/deferred/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/deferred/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/deferred/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/dynamic/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/dynamic/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/dynamic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/dynamic/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/dynamic/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/dynamic/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/dynamic/testinstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/dynamic/testinstrlib.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/entry_point/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/entry_point/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/entry_point/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/entry_point/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/entry_point/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/entry_point/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/exe/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/exe/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/exe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/exe/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/exe/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/exe/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/fasan/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/fasan/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/fasan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/fasan/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/fasan/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/fasan/test.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/freetype2/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/freetype2/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/freetype2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/freetype2/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/jpeg/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/jpeg/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/jpeg/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/entry.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/fuzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/fuzz.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/main.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/patch.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/replace.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/stalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/stalker.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/test.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/js/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/js/test2.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libpcap/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libpcap/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libpcap/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libxml/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libxml/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libxml/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libxslt/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libxslt/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/libxslt/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/harness.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/harness2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/harness2.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/harness3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/harness3.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/lib.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/osx-lib/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/osx-lib/lib2.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/output/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/output/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/output/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/output/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/output/frida_stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/output/frida_stderr.txt -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/output/frida_stdout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/output/frida_stdout.txt -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/output/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/output/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/perf/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/perf/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/perf/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/perf/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/perf/perf.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/persistent_ret/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/persistent_ret/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/persistent_ret/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/persistent_ret/test.js -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/png/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/png/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/png/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/png/persistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/png/persistent/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/proj4/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/proj4/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/proj4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/proj4/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/python/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/python/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/python/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/re2/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/re2/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/re2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/re2/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/sqlite/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/sqlite/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/sqlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/sqlite/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/testinstr/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/testinstr/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/testinstr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/testinstr/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/testinstr/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/testinstr/testinstr.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/unstable/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/unstable/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/unstable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/unstable/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/unstable/unstable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/unstable/unstable.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/vorbis/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/vorbis/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/test/vorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/test/vorbis/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ts/lib/afl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ts/lib/afl.ts -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ts/package-lock.json -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ts/package.json -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ts/tsconfig.json -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ts/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ts/tslint.json -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ub1804/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ub1804/Dockerfile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ub1804/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ub1804/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/ub1804/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/ub1804/Makefile -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/update_frida_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/update_frida_version.sh -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/util/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/util/bin2c.c -------------------------------------------------------------------------------- /FF_AFL++/frida_mode/util/get_symbol_addr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/frida_mode/util/get_symbol_addr.sh -------------------------------------------------------------------------------- /FF_AFL++/include/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/afl-as.h -------------------------------------------------------------------------------- /FF_AFL++/include/afl-fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/afl-fuzz.h -------------------------------------------------------------------------------- /FF_AFL++/include/afl-prealloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/afl-prealloc.h -------------------------------------------------------------------------------- /FF_AFL++/include/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/alloc-inl.h -------------------------------------------------------------------------------- /FF_AFL++/include/android-ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/android-ashmem.h -------------------------------------------------------------------------------- /FF_AFL++/include/cmplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/cmplog.h -------------------------------------------------------------------------------- /FF_AFL++/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/common.h -------------------------------------------------------------------------------- /FF_AFL++/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/config.h -------------------------------------------------------------------------------- /FF_AFL++/include/coverage-32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/coverage-32.h -------------------------------------------------------------------------------- /FF_AFL++/include/coverage-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/coverage-64.h -------------------------------------------------------------------------------- /FF_AFL++/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/debug.h -------------------------------------------------------------------------------- /FF_AFL++/include/envs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/envs.h -------------------------------------------------------------------------------- /FF_AFL++/include/forkserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/forkserver.h -------------------------------------------------------------------------------- /FF_AFL++/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/hash.h -------------------------------------------------------------------------------- /FF_AFL++/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/list.h -------------------------------------------------------------------------------- /FF_AFL++/include/sharedmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/sharedmem.h -------------------------------------------------------------------------------- /FF_AFL++/include/snapshot-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/snapshot-inl.h -------------------------------------------------------------------------------- /FF_AFL++/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/types.h -------------------------------------------------------------------------------- /FF_AFL++/include/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/include/xxhash.h -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/COPYING3 -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/Makefile -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/README.cmplog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/README.cmplog.md -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/README.gcc_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/README.gcc_plugin.md -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/README.laf-intel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/README.laf-intel.md -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/README.llvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/README.llvm.md -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/README.lto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/README.lto.md -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-compiler-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-compiler-rt.o.c -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-fish-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-fish-fast.c -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-fish-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-fish-pass.so.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-gcc-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-gcc-pass.so.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-llvm-common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-llvm-common.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-llvm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-llvm-common.h -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/afl-llvm-rt-lto.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/afl-llvm-rt-lto.o.c -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/cmplog-routines-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/cmplog-routines-pass.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/cmplog-switches-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/cmplog-switches-pass.cc -------------------------------------------------------------------------------- /FF_AFL++/instrumentation/ff-all-in-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/instrumentation/ff-all-in-one.c -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/LIBNYX_VERSION: -------------------------------------------------------------------------------- 1 | acaf7f6 2 | -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/PACKER_VERSION: -------------------------------------------------------------------------------- 1 | 86b159b 2 | -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/QEMU_NYX_VERSION: -------------------------------------------------------------------------------- 1 | 5c8cf793ec 2 | -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/build_nyx_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/build_nyx_support.sh -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/custom_harness/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/custom_harness/example.c -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/custom_harness/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/custom_harness/fuzz.sh -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/custom_harness/fuzz_no_pt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/custom_harness/fuzz_no_pt.sh -------------------------------------------------------------------------------- /FF_AFL++/nyx_mode/update_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/nyx_mode/update_ref.sh -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/QEMUAFL_VERSION: -------------------------------------------------------------------------------- 1 | a120c3feb5 2 | -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/README.persistent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/README.persistent.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/README.wine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/README.wine.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libcompcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libcompcov/Makefile -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libcompcov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libcompcov/README.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libcompcov/compcovtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libcompcov/compcovtest.cc -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libcompcov/libcompcov.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libcompcov/libcompcov.so.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libcompcov/pmparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libcompcov/pmparser.h -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/Makefile -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/README.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/dlmalloc.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/hooks.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/libqasan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/libqasan.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/libqasan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/libqasan.h -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/malloc.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/map_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/map_macro.h -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/patch.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/string.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/libqasan/uninstrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/libqasan/uninstrument.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/unsigaction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/unsigaction/Makefile -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/unsigaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/unsigaction/README.md -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/unsigaction/unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/unsigaction/unsigaction.c -------------------------------------------------------------------------------- /FF_AFL++/qemu_mode/update_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/qemu_mode/update_ref.sh -------------------------------------------------------------------------------- /FF_AFL++/scripts/gen_initial_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/scripts/gen_initial_distance.py -------------------------------------------------------------------------------- /FF_AFL++/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/README.md -------------------------------------------------------------------------------- /FF_AFL++/src/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-analyze.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-as.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-cc.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-common.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fishfuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fishfuzz.cc -------------------------------------------------------------------------------- /FF_AFL++/src/afl-forkserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-forkserver.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-bitmap.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-cmplog.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-debug.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-extras.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-init.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-mutators.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-one.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-python.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-queue.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-redqueen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-redqueen.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-run.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-state.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-stats.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz-statsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz-statsd.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-fuzz.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-gotcpu.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-ld-lto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-ld-lto.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-performance.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-sharedmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-sharedmem.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-showmap.c -------------------------------------------------------------------------------- /FF_AFL++/src/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/src/afl-tmin.c -------------------------------------------------------------------------------- /FF_AFL++/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test-instr.c -------------------------------------------------------------------------------- /FF_AFL++/test/checkcommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/checkcommit.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-all.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-basic.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-cmplog.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-compcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-compcov.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-custom-mutator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-custom-mutator.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-custom-mutators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-custom-mutators.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-dlopen.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-floatingpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-floatingpoint.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-fpExtra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-fpExtra.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-fp_Infcases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-fp_Infcases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-fp_NaNcases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-fp_NaNcases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-fp_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-fp_cases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-fp_minusZerocases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-fp_minusZerocases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-frida-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-frida-mode.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-gcc-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-gcc-plugin.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-int_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-int_cases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-libextensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-libextensions.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-llvm-lto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-llvm-lto.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-llvm.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-multiple-mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-multiple-mutators.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-performance.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-post.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-pre.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-qemu-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-qemu-mode.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-uint_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-uint_cases.c -------------------------------------------------------------------------------- /FF_AFL++/test/test-unicorn-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-unicorn-mode.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-unittests.sh -------------------------------------------------------------------------------- /FF_AFL++/test/test-unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/test-unsigaction.c -------------------------------------------------------------------------------- /FF_AFL++/test/unittests/unit_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/unittests/unit_hash.c -------------------------------------------------------------------------------- /FF_AFL++/test/unittests/unit_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/unittests/unit_list.c -------------------------------------------------------------------------------- /FF_AFL++/test/unittests/unit_maybe_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/unittests/unit_maybe_alloc.c -------------------------------------------------------------------------------- /FF_AFL++/test/unittests/unit_preallocable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/unittests/unit_preallocable.c -------------------------------------------------------------------------------- /FF_AFL++/test/unittests/unit_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/test/unittests/unit_rand.c -------------------------------------------------------------------------------- /FF_AFL++/testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/README.md -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /FF_AFL++/testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/testcases/others/sql/simple_queries.sql -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /FF_AFL++/testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /FF_AFL++/types.h: -------------------------------------------------------------------------------- 1 | include/types.h -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/UNICORNAFL_VERSION: -------------------------------------------------------------------------------- 1 | c3e15a7d 2 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/build_unicorn_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/build_unicorn_support.sh -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/c/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/c/COMPILE.md -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/c/Makefile -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/c/harness.c -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/c/sample_all.sh -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/c/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/persistent/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/persistent/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/persistent/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/persistent/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/persistent/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/python_simple/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/python_simple/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/python_simple/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/python_simple/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/python_simple/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/speedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/speedtest/Makefile -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/speedtest/rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/speedtest/sample_inputs/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/samples/speedtest/target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/samples/speedtest/target.c -------------------------------------------------------------------------------- /FF_AFL++/unicorn_mode/update_uc_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/unicorn_mode/update_uc_ref.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_network_proxy/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_network_proxy/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_network_proxy/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo please use GNU make, thanks! 3 | -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_network_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_network_proxy/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_proxy/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_proxy/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_proxy/afl-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_proxy/afl-proxy.c -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/TODO -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/afl-untracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/afl-untracer.c -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/libtestinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/libtestinstr.c -------------------------------------------------------------------------------- /FF_AFL++/utils/afl_untracer/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/afl_untracer/patches.txt -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/GNUmakefile -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/aflpp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/aflpp_driver.c -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/aflpp_driver_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/aflpp_driver_test.c -------------------------------------------------------------------------------- /FF_AFL++/utils/aflpp_driver/aflpp_qemu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/aflpp_driver/aflpp_qemu_driver.c -------------------------------------------------------------------------------- /FF_AFL++/utils/analysis_scripts/queue2csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/analysis_scripts/queue2csv.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/argv_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/argv_fuzzing/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/argv_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/argv_fuzzing/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/argv_fuzzing/argv-fuzz-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/argv_fuzzing/argv-fuzz-inl.h -------------------------------------------------------------------------------- /FF_AFL++/utils/argv_fuzzing/argvfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/argv_fuzzing/argvfuzz.c -------------------------------------------------------------------------------- /FF_AFL++/utils/asan_cgroups/limit_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/asan_cgroups/limit_memory.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/autodict-ql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/autodict-ql.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/build-codeql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/build-codeql.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/litan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/litan.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/litool.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/litool.ql -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/memcmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/memcmp-str.ql -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/memcmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/memcmp-strings.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/qlpack.yml: -------------------------------------------------------------------------------- 1 | name: autodict 2 | version: 0.0.0 3 | libraryPathDependencies: codeql-cpp 4 | -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/readme.md -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/stan-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/stan-strings.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/strcmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/strcmp-str.ql -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/strcmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/strcmp-strings.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/strncmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/strncmp-str.ql -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/strncmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/strncmp-strings.py -------------------------------------------------------------------------------- /FF_AFL++/utils/autodict_ql/strtool.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/autodict_ql/strtool.ql -------------------------------------------------------------------------------- /FF_AFL++/utils/crash_triage/triage_crashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/crash_triage/triage_crashes.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/defork/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/defork/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/defork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/defork/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/defork/defork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/defork/defork.c -------------------------------------------------------------------------------- /FF_AFL++/utils/defork/forking_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/defork/forking_target.c -------------------------------------------------------------------------------- /FF_AFL++/utils/libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libdislocator/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/libdislocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libdislocator/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /FF_AFL++/utils/libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libtokencap/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/libtokencap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libtokencap/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/.gitignore -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/CMakeLists.txt -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/EVALMAXSAT_VERSION: -------------------------------------------------------------------------------- 1 | 440bf90edf88f6ab940934129e3c5b3b93764295 2 | -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/build_optimin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/build_optimin.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/src/CMakeLists.txt -------------------------------------------------------------------------------- /FF_AFL++/utils/optimin/src/OptiMin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/optimin/src/OptiMin.cpp -------------------------------------------------------------------------------- /FF_AFL++/utils/persistent_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/persistent_mode/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/persistent_mode/persistent_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/persistent_mode/persistent_demo.c -------------------------------------------------------------------------------- /FF_AFL++/utils/persistent_mode/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/persistent_mode/test-instr.c -------------------------------------------------------------------------------- /FF_AFL++/utils/plot_ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/plot_ui/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/plot_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/plot_ui/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/plot_ui/afl-plot-ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/plot_ui/afl-plot-ui.c -------------------------------------------------------------------------------- /FF_AFL++/utils/qbdi_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qbdi_mode/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/qbdi_mode/assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qbdi_mode/assets/screen1.png -------------------------------------------------------------------------------- /FF_AFL++/utils/qbdi_mode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qbdi_mode/build.sh -------------------------------------------------------------------------------- /FF_AFL++/utils/qbdi_mode/demo-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qbdi_mode/demo-so.c -------------------------------------------------------------------------------- /FF_AFL++/utils/qbdi_mode/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qbdi_mode/template.cpp -------------------------------------------------------------------------------- /FF_AFL++/utils/qemu_persistent_hook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qemu_persistent_hook/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/qemu_persistent_hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qemu_persistent_hook/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/qemu_persistent_hook/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/qemu_persistent_hook/test.c -------------------------------------------------------------------------------- /FF_AFL++/utils/socket_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/socket_fuzzing/Makefile -------------------------------------------------------------------------------- /FF_AFL++/utils/socket_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/socket_fuzzing/README.md -------------------------------------------------------------------------------- /FF_AFL++/utils/socket_fuzzing/socketfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL++/utils/socket_fuzzing/socketfuzz.c -------------------------------------------------------------------------------- /FF_AFL/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/.gitignore -------------------------------------------------------------------------------- /FF_AFL/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/.travis.yml -------------------------------------------------------------------------------- /FF_AFL/.travis/check_fuzzer_stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/.travis/check_fuzzer_stats.sh -------------------------------------------------------------------------------- /FF_AFL/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/Android.bp -------------------------------------------------------------------------------- /FF_AFL/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/CONTRIBUTING.md -------------------------------------------------------------------------------- /FF_AFL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/LICENSE -------------------------------------------------------------------------------- /FF_AFL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/Makefile -------------------------------------------------------------------------------- /FF_AFL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/README.md -------------------------------------------------------------------------------- /FF_AFL/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-analyze.c -------------------------------------------------------------------------------- /FF_AFL/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-as.c -------------------------------------------------------------------------------- /FF_AFL/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-as.h -------------------------------------------------------------------------------- /FF_AFL/afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-cmin -------------------------------------------------------------------------------- /FF_AFL/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-fuzz.c -------------------------------------------------------------------------------- /FF_AFL/afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-gcc.c -------------------------------------------------------------------------------- /FF_AFL/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-gotcpu.c -------------------------------------------------------------------------------- /FF_AFL/afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-plot -------------------------------------------------------------------------------- /FF_AFL/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-showmap.c -------------------------------------------------------------------------------- /FF_AFL/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-tmin.c -------------------------------------------------------------------------------- /FF_AFL/afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/afl-whatsup -------------------------------------------------------------------------------- /FF_AFL/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/alloc-inl.h -------------------------------------------------------------------------------- /FF_AFL/android-ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/android-ashmem.h -------------------------------------------------------------------------------- /FF_AFL/cfgwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/cfgwrapper.h -------------------------------------------------------------------------------- /FF_AFL/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/config.h -------------------------------------------------------------------------------- /FF_AFL/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/debug.h -------------------------------------------------------------------------------- /FF_AFL/dictionaries/README.dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/README.dictionaries -------------------------------------------------------------------------------- /FF_AFL/dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/gif.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/js.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/json.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/pdf.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/perl.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/perl.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/png.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/regexp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/regexp.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/sql.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/tiff.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/webp.dict -------------------------------------------------------------------------------- /FF_AFL/dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dictionaries/xml.dict -------------------------------------------------------------------------------- /FF_AFL/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docker/Dockerfile -------------------------------------------------------------------------------- /FF_AFL/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/COPYING -------------------------------------------------------------------------------- /FF_AFL/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/ChangeLog -------------------------------------------------------------------------------- /FF_AFL/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/INSTALL -------------------------------------------------------------------------------- /FF_AFL/docs/QuickStartGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/QuickStartGuide.txt -------------------------------------------------------------------------------- /FF_AFL/docs/env_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/env_variables.txt -------------------------------------------------------------------------------- /FF_AFL/docs/historical_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/historical_notes.txt -------------------------------------------------------------------------------- /FF_AFL/docs/life_pro_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/life_pro_tips.txt -------------------------------------------------------------------------------- /FF_AFL/docs/notes_for_asan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/notes_for_asan.txt -------------------------------------------------------------------------------- /FF_AFL/docs/parallel_fuzzing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/parallel_fuzzing.txt -------------------------------------------------------------------------------- /FF_AFL/docs/perf_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/perf_tips.txt -------------------------------------------------------------------------------- /FF_AFL/docs/sister_projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/sister_projects.txt -------------------------------------------------------------------------------- /FF_AFL/docs/status_screen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/status_screen.txt -------------------------------------------------------------------------------- /FF_AFL/docs/technical_details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/technical_details.txt -------------------------------------------------------------------------------- /FF_AFL/docs/visualization/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/visualization/afl_gzip.png -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/bash-cmd-exec.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/bash-cmd-exec.var -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/bash-uninit-mem.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/bash-uninit-mem.var -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/file-fpu-exception.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/file-fpu-exception.elf -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/firefox-bmp-leak.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/firefox-bmp-leak.bmp -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/firefox-chrome-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/firefox-chrome-leak.jpg -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/firefox-gif-leak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/firefox-gif-leak.gif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/firefox-gif-leak2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/firefox-gif-leak2.gif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/jxrlib-crash.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/jxrlib-crash.jxr -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/jxrlib-crash2.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/jxrlib-crash2.jxr -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/jxrlib-crash3.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/jxrlib-crash3.jxr -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/jxrlib-crash4.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/jxrlib-crash4.jxr -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libjpeg-sos-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libjpeg-sos-leak.jpg -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libtiff-bad-write.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libtiff-bad-write.tif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libtiff-uninit-mem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libtiff-uninit-mem.tif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libtiff-uninit-mem2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libtiff-uninit-mem2.tif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libtiff-uninit-mem3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libtiff-uninit-mem3.tif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libtiff-uninit-mem4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libtiff-uninit-mem4.tif -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/libxml2-bad-read.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/libxml2-bad-read.xml -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/msie-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/msie-dht-leak.jpg -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/msie-jxr-mem-leak.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/msie-jxr-mem-leak.jxr -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/msie-png-mem-leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/msie-png-mem-leak.png -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/msie-zlib-dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/msie-zlib-dos.png -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/openssl-null-ptr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/openssl-null-ptr.der -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-bad-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-bad-free.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-bad-ptr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-bad-ptr.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-bad-ptr2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-bad-ptr2.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-bad-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-bad-ptr3.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-null-ptr1.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr10.sql: -------------------------------------------------------------------------------- 1 | SELECT fts3_tokenizer(@0()); 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr2.sql: -------------------------------------------------------------------------------- 1 | DETACH(select group_concat(q)); 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-null-ptr3.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr4.sql: -------------------------------------------------------------------------------- 1 | select n()AND+#00; 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr5.sql: -------------------------------------------------------------------------------- 1 | select e.*,0 from(s,(L))e; 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-null-ptr6.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr7.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t USING fts4(tokenize=); 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr8.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE p(a UNIQUE,PRIMARY KEY('a'))WITHOUT rowid; 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-null-ptr9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-null-ptr9.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-oob-read.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-oob-read.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-oob-write.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-oob-write.sql -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-stack-exhaustion.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t0 USING fts4(content=t0); 2 | -------------------------------------------------------------------------------- /FF_AFL/docs/vuln_samples/sqlite-unint-mem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/docs/vuln_samples/sqlite-unint-mem.sql -------------------------------------------------------------------------------- /FF_AFL/dyncfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dyncfg/Makefile -------------------------------------------------------------------------------- /FF_AFL/dyncfg/dyncfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dyncfg/dyncfg.h -------------------------------------------------------------------------------- /FF_AFL/dyncfg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dyncfg/main.cpp -------------------------------------------------------------------------------- /FF_AFL/dyncfg/runtime.o.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/dyncfg/runtime.o.cc -------------------------------------------------------------------------------- /FF_AFL/experimental/README.experiments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/experimental/README.experiments -------------------------------------------------------------------------------- /FF_AFL/experimental/argv_fuzzing/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/experimental/argv_fuzzing/test.c -------------------------------------------------------------------------------- /FF_AFL/experimental/argv_fuzzing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/experimental/argv_fuzzing/test.txt -------------------------------------------------------------------------------- /FF_AFL/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/hash.h -------------------------------------------------------------------------------- /FF_AFL/libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libdislocator/Makefile -------------------------------------------------------------------------------- /FF_AFL/libdislocator/README.dislocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libdislocator/README.dislocator -------------------------------------------------------------------------------- /FF_AFL/libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /FF_AFL/libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libtokencap/Makefile -------------------------------------------------------------------------------- /FF_AFL/libtokencap/README.tokencap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libtokencap/README.tokencap -------------------------------------------------------------------------------- /FF_AFL/libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/Makefile -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/README.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/README.llvm -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/afl-clang-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/afl-clang-fast.c -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/afl-llvm-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/afl-llvm-rt.o.c -------------------------------------------------------------------------------- /FF_AFL/llvm_mode/ff-all-in-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/llvm_mode/ff-all-in-one.c -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/README.qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/README.qemu -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/afl-qemu-cpu-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/afl-qemu-cpu-inl.h -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/configure.diff -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/cpu-exec.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/cpu-exec.diff -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/elfload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/elfload.diff -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/memfd.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/memfd.diff -------------------------------------------------------------------------------- /FF_AFL/qemu_mode/patches/syscall.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/qemu_mode/patches/syscall.diff -------------------------------------------------------------------------------- /FF_AFL/scripts/gen_initial_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/scripts/gen_initial_distance.py -------------------------------------------------------------------------------- /FF_AFL/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/test-instr.c -------------------------------------------------------------------------------- /FF_AFL/test-libfuzzer-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/test-libfuzzer-target.c -------------------------------------------------------------------------------- /FF_AFL/testcases/README.testcases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/README.testcases -------------------------------------------------------------------------------- /FF_AFL/testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /FF_AFL/testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /FF_AFL/testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /FF_AFL/testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /FF_AFL/testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /FF_AFL/testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /FF_AFL/testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /FF_AFL/testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /FF_AFL/testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /FF_AFL/testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /FF_AFL/testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /FF_AFL/testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /FF_AFL/testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /FF_AFL/testcases/others/regexp/reg1: -------------------------------------------------------------------------------- 1 | a*b\+\|[0-9]\|\d{1,9} 2 | -------------------------------------------------------------------------------- /FF_AFL/testcases/others/regexp/reg2: -------------------------------------------------------------------------------- 1 | ^\d{1,10}$ 2 | -------------------------------------------------------------------------------- /FF_AFL/testcases/others/regexp/reg3: -------------------------------------------------------------------------------- 1 | [\S\s] 2 | -------------------------------------------------------------------------------- /FF_AFL/testcases/others/regexp/reg4: -------------------------------------------------------------------------------- 1 | <(.|\n)+?> 2 | -------------------------------------------------------------------------------- /FF_AFL/testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /FF_AFL/testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /FF_AFL/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/FF_AFL/types.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/README.md -------------------------------------------------------------------------------- /paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/README.md -------------------------------------------------------------------------------- /paper/artifact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/README.md -------------------------------------------------------------------------------- /paper/artifact/asan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/Dockerfile -------------------------------------------------------------------------------- /paper/artifact/asan/build/MP4Box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/MP4Box.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/catdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/catdoc.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/exiv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/exiv.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/flvmeta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/flvmeta.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/gif2tga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/gif2tga.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/lou_checktable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/lou_checktable.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/nasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/nasm.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/nm-new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/nm-new.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/tcpdump.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/tcpprep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/tcpprep.sh -------------------------------------------------------------------------------- /paper/artifact/asan/build/tiff2pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/build/tiff2pdf.sh -------------------------------------------------------------------------------- /paper/artifact/asan/runtime/corpus/doc/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/runtime/corpus/doc/case -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/analysis.py -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/asan.crash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/asan.crash.json -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/asan.queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/asan.queue.json -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/calc_pval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/calc_pval.py -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/copy_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/copy_results.py -------------------------------------------------------------------------------- /paper/artifact/asan/scripts/print_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/asan/scripts/print_result.py -------------------------------------------------------------------------------- /paper/artifact/qsym/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/Dockerfile -------------------------------------------------------------------------------- /paper/artifact/qsym/build/djpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/djpeg.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/jasper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/jasper.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/objdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/objdump.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/readelf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/readelf.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/tcpdump.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/tiff2pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/tiff2pdf.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/tiff2ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/tiff2ps.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/build/xmllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/build/xmllint.sh -------------------------------------------------------------------------------- /paper/artifact/qsym/runtime/corpus/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /paper/artifact/qsym/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/scripts/analysis.py -------------------------------------------------------------------------------- /paper/artifact/qsym/scripts/copy_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/scripts/copy_results.py -------------------------------------------------------------------------------- /paper/artifact/qsym/scripts/print_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/scripts/print_result.py -------------------------------------------------------------------------------- /paper/artifact/qsym/scripts/ubsan.queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/qsym/scripts/ubsan.queue.json -------------------------------------------------------------------------------- /paper/artifact/two-stage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/Dockerfile -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/cflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/cflow.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/cxxfilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/cxxfilt.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/dwarfdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/dwarfdump.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/mujs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/mujs.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/mupdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/mupdf.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/tic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/tic.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/build/w3m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/build/w3m.sh -------------------------------------------------------------------------------- /paper/artifact/two-stage/runtime/corpus/html/name_entity_2.html: -------------------------------------------------------------------------------- 1 | 2πr 2 | -------------------------------------------------------------------------------- /paper/artifact/two-stage/runtime/corpus/html/q2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | test 4 | -------------------------------------------------------------------------------- /paper/artifact/two-stage/runtime/corpus/html/q3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | test 4 | -------------------------------------------------------------------------------- /paper/artifact/two-stage/runtime/corpus/html/q4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | test 4 | -------------------------------------------------------------------------------- /paper/artifact/two-stage/runtime/corpus/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /paper/artifact/two-stage/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/scripts/analysis.py -------------------------------------------------------------------------------- /paper/artifact/two-stage/scripts/calc_pval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/two-stage/scripts/calc_pval.py -------------------------------------------------------------------------------- /paper/artifact/ubsan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/Dockerfile -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/djpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/djpeg.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/jasper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/jasper.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/objdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/objdump.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/readelf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/readelf.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/tcpdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/tcpdump.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/tiff2pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/tiff2pdf.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/tiff2ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/tiff2ps.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/build/xmllint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/build/xmllint.sh -------------------------------------------------------------------------------- /paper/artifact/ubsan/runtime/corpus/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/analysis.py -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/asan.crash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/asan.crash.json -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/asan.queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/asan.queue.json -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/calc_pval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/calc_pval.py -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/copy_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/copy_results.py -------------------------------------------------------------------------------- /paper/artifact/ubsan/scripts/print_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/artifact/ubsan/scripts/print_result.py -------------------------------------------------------------------------------- /paper/fuzzbench/fishfuzz_afl/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/fuzzbench/fishfuzz_afl/fuzzer.py -------------------------------------------------------------------------------- /paper/hyperparam/hyperparam study-timeout.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/hyperparam/hyperparam study-timeout.csv -------------------------------------------------------------------------------- /paper/p-value/asan_cov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/asan_cov.csv -------------------------------------------------------------------------------- /paper/p-value/asan_reach.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/asan_reach.csv -------------------------------------------------------------------------------- /paper/p-value/p-val-calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/p-val-calc.py -------------------------------------------------------------------------------- /paper/p-value/two_stage_cov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/two_stage_cov.csv -------------------------------------------------------------------------------- /paper/p-value/two_stage_reach.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/two_stage_reach.csv -------------------------------------------------------------------------------- /paper/p-value/ubsan_cov.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/ubsan_cov.csv -------------------------------------------------------------------------------- /paper/p-value/ubsan_reach.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/ubsan_reach.csv -------------------------------------------------------------------------------- /paper/p-value/ubsan_san.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/p-value/ubsan_san.csv -------------------------------------------------------------------------------- /paper/preview/FishFuzz-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/preview/FishFuzz-preview.png -------------------------------------------------------------------------------- /paper/vuln/vuln.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FishFuzz/HEAD/paper/vuln/vuln.md --------------------------------------------------------------------------------