├── .gitignore ├── ICSE25-invivo.pdf ├── LICENSE ├── README.md ├── aflplusplus ├── .clang-format ├── .custom-format.py ├── .dockerignore ├── .github │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows │ │ ├── ci.yml │ │ ├── code-format.yml │ │ ├── codeql-analysis.yml │ │ ├── container.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 ├── 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 ├── 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 │ │ ├── shm.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 │ │ ├── shm.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 │ ├── json.h │ ├── list.h │ ├── sharedmem.h │ ├── snapshot-inl.h │ ├── types.h │ └── xxhash.h ├── instrumentation │ ├── 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-gcc-cmplog-pass.so.cc │ ├── afl-gcc-cmptrs-pass.so.cc │ ├── afl-gcc-common.h │ ├── 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 │ ├── gcc_plugin.COPYING3 │ ├── 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 ├── src │ ├── README.md │ ├── afl-analyze.c │ ├── afl-as.c │ ├── afl-cc.c │ ├── afl-common.c │ ├── afl-forkserver.c │ ├── afl-fuzz-bitmap.c │ ├── afl-fuzz-cmplog.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 │ ├── 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 ├── artifacts ├── README.md ├── afllive │ ├── boringssl │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ └── run.sh │ │ └── curated_config.json │ ├── bzip2 │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── run.sh │ │ │ └── sample.bz2 │ │ ├── curated_config.json │ │ └── sample.bz2 │ ├── htslib │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ └── run.sh │ │ └── curated_config.json │ ├── leptonica │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── build.sh │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── eng.traineddata │ │ │ └── run.sh │ │ ├── curated_config.json │ │ └── eng.traineddata │ ├── libaom │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── raw.av1 │ │ │ └── run_cmds.sh │ │ ├── curated_config.json │ │ └── raw.av1 │ ├── libass │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── run.sh │ │ │ ├── subs.srt │ │ │ └── unsub.mp4 │ │ ├── curated_config.json │ │ ├── subs.srt │ │ └── unsub.mp4 │ ├── libexif │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ └── run.sh │ │ └── curated_config.json │ ├── libgsm │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── build.sh │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── run.sh │ │ │ └── untitled.wav │ │ ├── curated_config.json │ │ └── untitled.wav │ ├── libvpx │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── run_cmds.sh │ │ │ └── stream.ivf │ │ ├── curated_config.json │ │ └── stream.ivf │ ├── libxml2 │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── build_fuzz.sh │ │ ├── build_log.sh │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── build_cov.sh │ │ │ ├── build_fuzz.sh │ │ │ ├── build_log.sh │ │ │ └── run.sh │ │ └── curated_config.json │ ├── openssl │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── build_fuzz.sh │ │ ├── build_log.sh │ │ ├── coverage │ │ │ ├── Dockerfile │ │ │ ├── build_cov.sh │ │ │ ├── build_fuzz_cov.sh │ │ │ ├── build_log.sh │ │ │ └── run.sh │ │ └── curated_config.json │ └── opus │ │ ├── Dockerfile │ │ ├── auto_config.json │ │ ├── build_fuzz.sh │ │ ├── build_log.sh │ │ ├── coverage │ │ ├── Dockerfile │ │ ├── build_cov.sh │ │ ├── build_fuzz.sh │ │ ├── build_log.sh │ │ └── run.sh │ │ └── curated_config.json ├── prepare_host_for_fuzzing.sh ├── run_afllive.sh ├── run_sota.sh └── sota │ ├── htslib │ ├── Dockerfile │ ├── c1#bounds.sam │ ├── c2.fa │ ├── coverage │ │ ├── Dockerfile │ │ └── run.sh │ └── run.sh │ ├── leptonica │ ├── Dockerfile │ ├── coverage │ │ ├── Dockerfile │ │ └── run.sh │ ├── eurotext.png │ └── run.sh │ ├── libaom │ ├── Dockerfile │ ├── coverage │ │ ├── Dockerfile │ │ └── run.sh │ ├── raw.av1 │ └── run.sh │ ├── libgsm │ ├── Dockerfile │ ├── coverage │ │ ├── Dockerfile │ │ └── run.sh │ ├── run.sh │ └── untitled.wav │ └── libvpx │ ├── Dockerfile │ ├── coverage │ ├── Dockerfile │ └── run.sh │ ├── run.sh │ └── stream.ivf ├── config_generator ├── derive_constraints.py ├── interesting_functions.ql └── run.sh ├── coverage_utils ├── get_cov_from_profraws.py ├── get_profraws.py └── get_profraws_and_cov_testamp.py ├── instrumentation ├── Makefile ├── inc │ ├── Harnesser.h │ ├── json.hpp │ ├── utils.h │ └── utils_common.h └── src │ ├── Harnesser.cc │ ├── pass.cc │ └── utils.cc ├── libgen ├── Makefile ├── inc │ ├── ConstraintFactory.h │ ├── Dependencies.h │ ├── buff_utils.h │ ├── json.hpp │ ├── types.h │ └── utils_common.h └── src │ ├── ConstraintFactory.cc │ ├── Dependencies.cc │ ├── buff_utils.cc │ ├── main.cc │ └── types.cc └── testamp ├── .gitignore ├── Makefile ├── README.md ├── lib ├── Makefile └── src │ └── main.c ├── pass ├── Makefile ├── inc │ └── json.hpp └── src │ └── main.cc └── setup_fuzzers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/.gitignore -------------------------------------------------------------------------------- /ICSE25-invivo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/ICSE25-invivo.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/README.md -------------------------------------------------------------------------------- /aflplusplus/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.clang-format -------------------------------------------------------------------------------- /aflplusplus/.custom-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.custom-format.py -------------------------------------------------------------------------------- /aflplusplus/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.dockerignore -------------------------------------------------------------------------------- /aflplusplus/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/FUNDING.yml -------------------------------------------------------------------------------- /aflplusplus/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /aflplusplus/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /aflplusplus/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/workflows/ci.yml -------------------------------------------------------------------------------- /aflplusplus/.github/workflows/code-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/workflows/code-format.yml -------------------------------------------------------------------------------- /aflplusplus/.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /aflplusplus/.github/workflows/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/workflows/container.yml -------------------------------------------------------------------------------- /aflplusplus/.github/workflows/rust_custom_mutator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.github/workflows/rust_custom_mutator.yml -------------------------------------------------------------------------------- /aflplusplus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.gitignore -------------------------------------------------------------------------------- /aflplusplus/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/.gitmodules -------------------------------------------------------------------------------- /aflplusplus/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/Android.bp -------------------------------------------------------------------------------- /aflplusplus/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/CITATION.cff -------------------------------------------------------------------------------- /aflplusplus/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/CONTRIBUTING.md -------------------------------------------------------------------------------- /aflplusplus/Changelog.md: -------------------------------------------------------------------------------- 1 | docs/Changelog.md -------------------------------------------------------------------------------- /aflplusplus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/Dockerfile -------------------------------------------------------------------------------- /aflplusplus/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/GNUmakefile.gcc_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/GNUmakefile.gcc_plugin -------------------------------------------------------------------------------- /aflplusplus/GNUmakefile.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/GNUmakefile.llvm -------------------------------------------------------------------------------- /aflplusplus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/LICENSE -------------------------------------------------------------------------------- /aflplusplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/Makefile -------------------------------------------------------------------------------- /aflplusplus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/README.md -------------------------------------------------------------------------------- /aflplusplus/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/TODO.md -------------------------------------------------------------------------------- /aflplusplus/afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-cmin -------------------------------------------------------------------------------- /aflplusplus/afl-cmin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-cmin.bash -------------------------------------------------------------------------------- /aflplusplus/afl-persistent-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-persistent-config -------------------------------------------------------------------------------- /aflplusplus/afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-plot -------------------------------------------------------------------------------- /aflplusplus/afl-system-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-system-config -------------------------------------------------------------------------------- /aflplusplus/afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-whatsup -------------------------------------------------------------------------------- /aflplusplus/afl-wine-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/afl-wine-trace -------------------------------------------------------------------------------- /aflplusplus/config.h: -------------------------------------------------------------------------------- 1 | include/config.h -------------------------------------------------------------------------------- /aflplusplus/coresight_mode/.gitignore: -------------------------------------------------------------------------------- 1 | .local 2 | glibc* 3 | -------------------------------------------------------------------------------- /aflplusplus/coresight_mode/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/coresight_mode/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/coresight_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/coresight_mode/Makefile -------------------------------------------------------------------------------- /aflplusplus/coresight_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/coresight_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/Android.bp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/Makefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/XmlMutatorMin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/XmlMutatorMin.py -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/common.py -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/example.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/example.py -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/simple_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/simple_example.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/examples/wrapper_afl_min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/examples/wrapper_afl_min.py -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/JSONC_VERSION: -------------------------------------------------------------------------------- 1 | af8dd4a307e7b837f9fa2959549548ace4afe08b 2 | -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/gramfuzz-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/gramfuzz-util.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/gramfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/gramfuzz.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/gramfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/gramfuzz.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/hashmap.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/hashmap.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/test.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/test.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/utarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/utarray.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/gramatron/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/gramatron/uthash.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/grammar_mutator/GRAMMAR_VERSION: -------------------------------------------------------------------------------- 1 | ff4e5a2 2 | -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/grammar_mutator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/grammar_mutator/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/Makefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/honggfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/honggfuzz.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/honggfuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/honggfuzz.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/input.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/libhfcommon/log.h: -------------------------------------------------------------------------------- 1 | common.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/libhfcommon/util.h: -------------------------------------------------------------------------------- 1 | common.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/mangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/mangle.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/honggfuzz/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/honggfuzz/mangle.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libafl_base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libafl_base/.gitignore -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libafl_base/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libafl_base/Cargo.toml -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libafl_base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libafl_base/Makefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libafl_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libafl_base/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libafl_base/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libafl_base/src/lib.rs -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerBuiltins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerBuiltins.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerCommand.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerCorpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerCorpus.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerDefs.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerDriver.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerFlags.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerFlags.def -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerFork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerFork.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerFork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerFork.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerIO.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerIO.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerIOPosix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerIOPosix.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerInterface.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerInternal.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerLoop.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerMain.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerMerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerMerge.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerMerge.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerMutate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerMutate.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerMutate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerMutate.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerOptions.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerPlatform.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerRandom.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerSHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerSHA1.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerSHA1.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerTracePC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerTracePC.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerTracePC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerTracePC.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerUtil.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/FuzzerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/FuzzerUtil.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/Makefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/libfuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/libfuzzer.cpp -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/libfuzzer/libfuzzer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/libfuzzer/libfuzzer.inc -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/radamsa/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/radamsa/LICENSE -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/radamsa/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/custom_mutator_helpers.h: -------------------------------------------------------------------------------- 1 | ../examples/custom_mutator_helpers.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/libradamsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/radamsa/libradamsa.c -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/radamsa/radamsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/radamsa/radamsa.h -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/rust/.gitignore -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/rust/Cargo.toml -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/rust/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/rust/example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/rust/example/Cargo.toml -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/rust/example_lain/rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/symcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/symcc/Makefile -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/symcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/symcc/README.md -------------------------------------------------------------------------------- /aflplusplus/custom_mutators/symcc/symcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/custom_mutators/symcc/symcc.c -------------------------------------------------------------------------------- /aflplusplus/dictionaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/README.md -------------------------------------------------------------------------------- /aflplusplus/dictionaries/aff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/aff.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/ass.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/ass.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/atom.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/atom.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/av1_dc.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/av1_dc.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/bash.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/bash.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/bdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/bdf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/bmp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/bmp.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/bz2.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/bz2.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/creole.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/creole.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/css.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/css.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/csv.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/csv.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/dds.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/dds.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/djvu.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/djvu.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/docommand.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/docommand.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/exif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/exif.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/fbs.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/fbs.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/ftp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/ftp.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/gif.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/graphviz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/graphviz.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/heif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/heif.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/hoextdown.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/hoextdown.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/http.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/http.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/icc.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/icc.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/iccprofile.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/iccprofile.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/icns.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/icns.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/initfile.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/initfile.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/jbig2.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/jbig2.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/jpeg2000.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/jpeg2000.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/js.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/json.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/jsonnet.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/jsonnet.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/markdown.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/markdown.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/math.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/math.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/mathml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/mathml.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/mp4.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/mp4.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/mysqld.dict: -------------------------------------------------------------------------------- 1 | user="root" 2 | -------------------------------------------------------------------------------- /aflplusplus/dictionaries/ogg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/ogg.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/openexr.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/openexr.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/otf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/otf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/pbm.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/pbm.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/pcap.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/pcap.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/pdf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/perl.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/perl.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/png.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/proj4.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/proj4.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/protobuf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/protobuf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/ps.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/ps.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/psd.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/psd.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/regexp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/regexp.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/riff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/riff.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/rss.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/rss.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/rst.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/rst.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/rtf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/rtf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/sas.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/sas.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/spss.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/spss.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/sql.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/stata.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/stata.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/svg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/svg.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/tex.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/tex.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/theme-load-fuzz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/theme-load-fuzz.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/tiff.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/tokener_parse_ex.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/tokener_parse_ex.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/toml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/toml.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/type42.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/type42.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/url.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/url.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/utf8.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/utf8.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/vcf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/vcf.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/vhd.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/vhd.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/vpx_dec.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/vpx_dec.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/wav.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/wav.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/webm.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/webm.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/webp.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/wkt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/wkt.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/x86.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/x86.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xml.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xml_UTF_16.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xml_UTF_16.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xml_UTF_16BE.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xml_UTF_16BE.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xml_UTF_16LE.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xml_UTF_16LE.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xpath.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xpath.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/xslt.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/xslt.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/yaml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/yaml.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/yara.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/yara.dict -------------------------------------------------------------------------------- /aflplusplus/dictionaries/zip.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dictionaries/zip.dict -------------------------------------------------------------------------------- /aflplusplus/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/COPYING -------------------------------------------------------------------------------- /aflplusplus/docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/Changelog.md -------------------------------------------------------------------------------- /aflplusplus/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/FAQ.md -------------------------------------------------------------------------------- /aflplusplus/docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/INSTALL.md -------------------------------------------------------------------------------- /aflplusplus/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/README.md -------------------------------------------------------------------------------- /aflplusplus/docs/afl-fuzz_approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/afl-fuzz_approach.md -------------------------------------------------------------------------------- /aflplusplus/docs/best_practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/best_practices.md -------------------------------------------------------------------------------- /aflplusplus/docs/custom_mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/custom_mutators.md -------------------------------------------------------------------------------- /aflplusplus/docs/env_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/env_variables.md -------------------------------------------------------------------------------- /aflplusplus/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/features.md -------------------------------------------------------------------------------- /aflplusplus/docs/fuzzing_binary-only_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/fuzzing_binary-only_targets.md -------------------------------------------------------------------------------- /aflplusplus/docs/fuzzing_in_depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/fuzzing_in_depth.md -------------------------------------------------------------------------------- /aflplusplus/docs/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/ideas.md -------------------------------------------------------------------------------- /aflplusplus/docs/important_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/important_changes.md -------------------------------------------------------------------------------- /aflplusplus/docs/resources/3_fuzz_target.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/resources/3_fuzz_target.drawio.svg -------------------------------------------------------------------------------- /aflplusplus/docs/resources/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/resources/afl_gzip.png -------------------------------------------------------------------------------- /aflplusplus/docs/resources/grafana-afl++.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/resources/grafana-afl++.json -------------------------------------------------------------------------------- /aflplusplus/docs/resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/resources/screenshot.png -------------------------------------------------------------------------------- /aflplusplus/docs/resources/statsd-grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/resources/statsd-grafana.png -------------------------------------------------------------------------------- /aflplusplus/docs/rpc_statsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/rpc_statsd.md -------------------------------------------------------------------------------- /aflplusplus/docs/third_party_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/third_party_tools.md -------------------------------------------------------------------------------- /aflplusplus/docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/docs/tutorials.md -------------------------------------------------------------------------------- /aflplusplus/dynamic_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/dynamic_list.txt -------------------------------------------------------------------------------- /aflplusplus/frida_mode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/.gitignore -------------------------------------------------------------------------------- /aflplusplus/frida_mode/DEBUGGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/DEBUGGING.md -------------------------------------------------------------------------------- /aflplusplus/frida_mode/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/MapDensity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/MapDensity.md -------------------------------------------------------------------------------- /aflplusplus/frida_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/frida_mode/Scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/Scripting.md -------------------------------------------------------------------------------- /aflplusplus/frida_mode/addr/addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/addr/addr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/frida.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/frida.map -------------------------------------------------------------------------------- /aflplusplus/frida_mode/hook/frida_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/hook/frida_hook.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/hook/qemu_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/hook/qemu_hook.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/asan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/asan.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/ctx.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/entry.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/frida_cmplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/frida_cmplog.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/instrument.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/intercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/intercept.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/js.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/lib.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/module.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/output.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/persistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/persistent.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/prefetch.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/ranges.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/seccomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/seccomp.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/shm.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/stalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/stalker.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/stats.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/include/util.h -------------------------------------------------------------------------------- /aflplusplus/frida_mode/many-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/many-linux/Dockerfile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/many-linux/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/many-linux/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/many-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/many-linux/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/many-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/many-linux/README.md -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/asan/asan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/asan/asan.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/asan/asan_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/asan/asan_arm32.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/asan/asan_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/asan/asan_arm64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/asan/asan_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/asan/asan_x64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/asan/asan_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/asan/asan_x86.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/cmplog/cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/cmplog/cmplog.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/cmplog/cmplog_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/cmplog/cmplog_arm32.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/cmplog/cmplog_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/cmplog/cmplog_arm64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/cmplog/cmplog_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/cmplog/cmplog_x64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/cmplog/cmplog_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/cmplog/cmplog_x86.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/ctx/ctx_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/ctx/ctx_arm32.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/ctx/ctx_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/ctx/ctx_arm64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/ctx/ctx_x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/ctx/ctx_x64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/ctx/ctx_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/ctx/ctx_x86.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/entry.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/instrument/instrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/instrument/instrument.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/intercept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/intercept.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/js/api.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/js/js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/js/js.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/js/js_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/js/js_api.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/lib/lib.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/lib/lib_apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/lib/lib_apple.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/main.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/module.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/output.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/persistent/persistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/persistent/persistent.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/prefetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/prefetch.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/ranges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/ranges.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_atomic.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_child.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_event.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_filter.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_print.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_socket.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/seccomp/seccomp_syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/seccomp/seccomp_syscall.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/shm.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/stalker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/stalker.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/stats/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/stats/stats.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/stats/stats_arm32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/stats/stats_arm32.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/stats/stats_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/stats/stats_arm64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/stats/stats_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/stats/stats_x86_64.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/src/util.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/bloaty/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/bloaty/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/bloaty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/bloaty/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cache/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cache/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cache/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cache/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cache/cache.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmov/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmov/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmov/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmov/cmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmov/cmov.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmplog/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmplog/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmplog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmplog/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/cmplog/cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/cmplog/cmplog.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/deferred/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/deferred/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/deferred/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/deferred/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/deferred/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/deferred/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/dynamic/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/dynamic/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/dynamic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/dynamic/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/dynamic/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/dynamic/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/dynamic/testinstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/dynamic/testinstrlib.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/entry_point/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/entry_point/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/entry_point/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/entry_point/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/entry_point/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/entry_point/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/exe/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/exe/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/exe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/exe/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/exe/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/exe/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/fasan/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/fasan/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/fasan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/fasan/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/fasan/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/fasan/test.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/freetype2/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/freetype2/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/freetype2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/freetype2/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/jpeg/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/jpeg/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/jpeg/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/entry.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/fuzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/fuzz.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/main.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/patch.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/replace.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/stalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/stalker.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/test.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/js/test2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/js/test2.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libpcap/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libpcap/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libpcap/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libxml/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libxml/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libxml/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libxslt/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libxslt/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/libxslt/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/harness.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/harness2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/harness2.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/harness3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/harness3.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/lib.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/osx-lib/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/osx-lib/lib2.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/output/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/output/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/output/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/output/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/output/frida_stderr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/output/frida_stderr.txt -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/output/frida_stdout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/output/frida_stdout.txt -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/output/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/output/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/perf/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/perf/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/perf/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/perf/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/perf/perf.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/persistent_ret/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/persistent_ret/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/persistent_ret/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/persistent_ret/test.js -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/png/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/png/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/png/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/png/persistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/png/persistent/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/proj4/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/proj4/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/proj4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/proj4/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/python/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/python/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/python/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/re2/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/re2/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/re2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/re2/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/sqlite/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/sqlite/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/sqlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/sqlite/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/testinstr/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/testinstr/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/testinstr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/testinstr/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/testinstr/testinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/testinstr/testinstr.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/unstable/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/unstable/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/unstable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/unstable/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/unstable/unstable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/unstable/unstable.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/vorbis/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/vorbis/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/test/vorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/test/vorbis/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ts/lib/afl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ts/lib/afl.ts -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ts/package-lock.json -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ts/package.json -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ts/tsconfig.json -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ts/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ts/tslint.json -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ub1804/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ub1804/Dockerfile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ub1804/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ub1804/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/ub1804/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/ub1804/Makefile -------------------------------------------------------------------------------- /aflplusplus/frida_mode/update_frida_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/update_frida_version.sh -------------------------------------------------------------------------------- /aflplusplus/frida_mode/util/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/util/bin2c.c -------------------------------------------------------------------------------- /aflplusplus/frida_mode/util/get_symbol_addr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/frida_mode/util/get_symbol_addr.sh -------------------------------------------------------------------------------- /aflplusplus/include/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/afl-as.h -------------------------------------------------------------------------------- /aflplusplus/include/afl-fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/afl-fuzz.h -------------------------------------------------------------------------------- /aflplusplus/include/afl-prealloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/afl-prealloc.h -------------------------------------------------------------------------------- /aflplusplus/include/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/alloc-inl.h -------------------------------------------------------------------------------- /aflplusplus/include/android-ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/android-ashmem.h -------------------------------------------------------------------------------- /aflplusplus/include/cmplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/cmplog.h -------------------------------------------------------------------------------- /aflplusplus/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/common.h -------------------------------------------------------------------------------- /aflplusplus/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/config.h -------------------------------------------------------------------------------- /aflplusplus/include/coverage-32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/coverage-32.h -------------------------------------------------------------------------------- /aflplusplus/include/coverage-64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/coverage-64.h -------------------------------------------------------------------------------- /aflplusplus/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/debug.h -------------------------------------------------------------------------------- /aflplusplus/include/envs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/envs.h -------------------------------------------------------------------------------- /aflplusplus/include/forkserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/forkserver.h -------------------------------------------------------------------------------- /aflplusplus/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/hash.h -------------------------------------------------------------------------------- /aflplusplus/include/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/json.h -------------------------------------------------------------------------------- /aflplusplus/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/list.h -------------------------------------------------------------------------------- /aflplusplus/include/sharedmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/sharedmem.h -------------------------------------------------------------------------------- /aflplusplus/include/snapshot-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/snapshot-inl.h -------------------------------------------------------------------------------- /aflplusplus/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/types.h -------------------------------------------------------------------------------- /aflplusplus/include/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/include/xxhash.h -------------------------------------------------------------------------------- /aflplusplus/instrumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/Makefile -------------------------------------------------------------------------------- /aflplusplus/instrumentation/README.cmplog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/README.cmplog.md -------------------------------------------------------------------------------- /aflplusplus/instrumentation/README.gcc_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/README.gcc_plugin.md -------------------------------------------------------------------------------- /aflplusplus/instrumentation/README.laf-intel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/README.laf-intel.md -------------------------------------------------------------------------------- /aflplusplus/instrumentation/README.llvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/README.llvm.md -------------------------------------------------------------------------------- /aflplusplus/instrumentation/README.lto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/README.lto.md -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-compiler-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-compiler-rt.o.c -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-gcc-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-gcc-common.h -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-gcc-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-gcc-pass.so.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-llvm-common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-llvm-common.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-llvm-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-llvm-common.h -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-llvm-dict2file.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-llvm-dict2file.so.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/afl-llvm-rt-lto.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/afl-llvm-rt-lto.o.c -------------------------------------------------------------------------------- /aflplusplus/instrumentation/cmplog-routines-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/cmplog-routines-pass.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/cmplog-switches-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/cmplog-switches-pass.cc -------------------------------------------------------------------------------- /aflplusplus/instrumentation/gcc_plugin.COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/instrumentation/gcc_plugin.COPYING3 -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/LIBNYX_VERSION: -------------------------------------------------------------------------------- 1 | acaf7f6 2 | -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/PACKER_VERSION: -------------------------------------------------------------------------------- 1 | 86b159b 2 | -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/QEMU_NYX_VERSION: -------------------------------------------------------------------------------- 1 | 5c8cf793ec 2 | -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/build_nyx_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/build_nyx_support.sh -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/custom_harness/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/custom_harness/example.c -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/custom_harness/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/custom_harness/fuzz.sh -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/custom_harness/fuzz_no_pt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/custom_harness/fuzz_no_pt.sh -------------------------------------------------------------------------------- /aflplusplus/nyx_mode/update_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/nyx_mode/update_ref.sh -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/QEMUAFL_VERSION: -------------------------------------------------------------------------------- 1 | a120c3feb5 2 | -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/README.persistent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/README.persistent.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/README.wine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/README.wine.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libcompcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libcompcov/Makefile -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libcompcov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libcompcov/README.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libcompcov/compcovtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libcompcov/compcovtest.cc -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libcompcov/libcompcov.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libcompcov/libcompcov.so.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libcompcov/pmparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libcompcov/pmparser.h -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/Makefile -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/README.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/dlmalloc.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/hooks.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/libqasan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/libqasan.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/libqasan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/libqasan.h -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/malloc.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/map_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/map_macro.h -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/patch.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/string.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/libqasan/uninstrument.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/libqasan/uninstrument.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/unsigaction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/unsigaction/Makefile -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/unsigaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/unsigaction/README.md -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/unsigaction/unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/unsigaction/unsigaction.c -------------------------------------------------------------------------------- /aflplusplus/qemu_mode/update_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/qemu_mode/update_ref.sh -------------------------------------------------------------------------------- /aflplusplus/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/README.md -------------------------------------------------------------------------------- /aflplusplus/src/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-analyze.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-as.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-cc.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-common.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-forkserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-forkserver.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-bitmap.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-cmplog.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-extras.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-init.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-mutators.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-one.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-python.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-queue.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-redqueen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-redqueen.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-run.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-state.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-stats.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz-statsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz-statsd.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-fuzz.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-gotcpu.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-ld-lto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-ld-lto.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-performance.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-sharedmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-sharedmem.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-showmap.c -------------------------------------------------------------------------------- /aflplusplus/src/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/src/afl-tmin.c -------------------------------------------------------------------------------- /aflplusplus/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test-instr.c -------------------------------------------------------------------------------- /aflplusplus/test/checkcommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/checkcommit.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-all.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-basic.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-cmplog.c -------------------------------------------------------------------------------- /aflplusplus/test/test-compcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-compcov.c -------------------------------------------------------------------------------- /aflplusplus/test/test-custom-mutator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-custom-mutator.c -------------------------------------------------------------------------------- /aflplusplus/test/test-custom-mutators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-custom-mutators.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-dlopen.c -------------------------------------------------------------------------------- /aflplusplus/test/test-floatingpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-floatingpoint.c -------------------------------------------------------------------------------- /aflplusplus/test/test-fpExtra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-fpExtra.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-fp_Infcases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-fp_Infcases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-fp_NaNcases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-fp_NaNcases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-fp_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-fp_cases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-fp_minusZerocases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-fp_minusZerocases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-frida-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-frida-mode.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-gcc-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-gcc-plugin.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-int_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-int_cases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-libextensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-libextensions.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-llvm-lto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-llvm-lto.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-llvm.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-multiple-mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-multiple-mutators.c -------------------------------------------------------------------------------- /aflplusplus/test/test-performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-performance.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-post.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-pre.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-qemu-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-qemu-mode.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-uint_cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-uint_cases.c -------------------------------------------------------------------------------- /aflplusplus/test/test-unicorn-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-unicorn-mode.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-unittests.sh -------------------------------------------------------------------------------- /aflplusplus/test/test-unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/test-unsigaction.c -------------------------------------------------------------------------------- /aflplusplus/test/unittests/unit_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/unittests/unit_hash.c -------------------------------------------------------------------------------- /aflplusplus/test/unittests/unit_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/unittests/unit_list.c -------------------------------------------------------------------------------- /aflplusplus/test/unittests/unit_maybe_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/unittests/unit_maybe_alloc.c -------------------------------------------------------------------------------- /aflplusplus/test/unittests/unit_preallocable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/unittests/unit_preallocable.c -------------------------------------------------------------------------------- /aflplusplus/test/unittests/unit_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/test/unittests/unit_rand.c -------------------------------------------------------------------------------- /aflplusplus/testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/README.md -------------------------------------------------------------------------------- /aflplusplus/testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /aflplusplus/testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /aflplusplus/testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /aflplusplus/testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /aflplusplus/testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /aflplusplus/testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /aflplusplus/testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /aflplusplus/testcases/images/png/not_kitty_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/png/not_kitty_alpha.png -------------------------------------------------------------------------------- /aflplusplus/testcases/images/png/not_kitty_gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/png/not_kitty_gamma.png -------------------------------------------------------------------------------- /aflplusplus/testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /aflplusplus/testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /aflplusplus/testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /aflplusplus/testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /aflplusplus/testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /aflplusplus/testcases/others/pcap/small_capture.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/others/pcap/small_capture.pcap -------------------------------------------------------------------------------- /aflplusplus/testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /aflplusplus/testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /aflplusplus/testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/testcases/others/sql/simple_queries.sql -------------------------------------------------------------------------------- /aflplusplus/testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /aflplusplus/testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /aflplusplus/types.h: -------------------------------------------------------------------------------- 1 | include/types.h -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/UNICORNAFL_VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/UNICORNAFL_VERSION -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/build_unicorn_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/build_unicorn_support.sh -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/c/.gitignore -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/c/COMPILE.md -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/c/Makefile -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/c/harness.c -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/c/sample_all.sh -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/c/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/persistent/Makefile -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/persistent/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/python_simple/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/python_simple/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/python_simple/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/python_simple/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/python_simple/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/speedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/speedtest/Makefile -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/speedtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/speedtest/README.md -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/speedtest/rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/speedtest/sample_inputs/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/samples/speedtest/target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/samples/speedtest/target.c -------------------------------------------------------------------------------- /aflplusplus/unicorn_mode/update_uc_ref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/unicorn_mode/update_uc_ref.sh -------------------------------------------------------------------------------- /aflplusplus/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/afl_network_proxy/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_network_proxy/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/utils/afl_network_proxy/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo please use GNU make, thanks! 3 | -------------------------------------------------------------------------------- /aflplusplus/utils/afl_network_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_network_proxy/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/afl_proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_proxy/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/afl_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_proxy/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/afl_proxy/afl-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_proxy/afl-proxy.c -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/TODO -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/afl-untracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/afl-untracer.c -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/libtestinstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/libtestinstr.c -------------------------------------------------------------------------------- /aflplusplus/utils/afl_untracer/patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/afl_untracer/patches.txt -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/GNUmakefile -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/aflpp_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/aflpp_driver.c -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/aflpp_driver_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/aflpp_driver_test.c -------------------------------------------------------------------------------- /aflplusplus/utils/aflpp_driver/aflpp_qemu_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/aflpp_driver/aflpp_qemu_driver.c -------------------------------------------------------------------------------- /aflplusplus/utils/analysis_scripts/queue2csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/analysis_scripts/queue2csv.sh -------------------------------------------------------------------------------- /aflplusplus/utils/argv_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/argv_fuzzing/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/argv_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/argv_fuzzing/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/argv_fuzzing/argv-fuzz-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/argv_fuzzing/argv-fuzz-inl.h -------------------------------------------------------------------------------- /aflplusplus/utils/argv_fuzzing/argvfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/argv_fuzzing/argvfuzz.c -------------------------------------------------------------------------------- /aflplusplus/utils/asan_cgroups/limit_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/asan_cgroups/limit_memory.sh -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/autodict-ql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/autodict-ql.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/build-codeql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/build-codeql.sh -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/litan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/litan.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/litool.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/litool.ql -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/memcmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/memcmp-str.ql -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/memcmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/memcmp-strings.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/qlpack.yml: -------------------------------------------------------------------------------- 1 | name: autodict 2 | version: 0.0.0 3 | libraryPathDependencies: codeql-cpp 4 | -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/readme.md -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/stan-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/stan-strings.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/strcmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/strcmp-str.ql -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/strcmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/strcmp-strings.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/strncmp-str.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/strncmp-str.ql -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/strncmp-strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/strncmp-strings.py -------------------------------------------------------------------------------- /aflplusplus/utils/autodict_ql/strtool.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/autodict_ql/strtool.ql -------------------------------------------------------------------------------- /aflplusplus/utils/canvas_harness/canvas_harness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/canvas_harness/canvas_harness.html -------------------------------------------------------------------------------- /aflplusplus/utils/crash_triage/triage_crashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/crash_triage/triage_crashes.sh -------------------------------------------------------------------------------- /aflplusplus/utils/defork/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/defork/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/defork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/defork/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/defork/defork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/defork/defork.c -------------------------------------------------------------------------------- /aflplusplus/utils/defork/forking_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/defork/forking_target.c -------------------------------------------------------------------------------- /aflplusplus/utils/distributed_fuzzing/sync_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/distributed_fuzzing/sync_script.sh -------------------------------------------------------------------------------- /aflplusplus/utils/libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libdislocator/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/libdislocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libdislocator/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /aflplusplus/utils/libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libtokencap/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/libtokencap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libtokencap/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /aflplusplus/utils/persistent_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/persistent_mode/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/persistent_mode/persistent_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/persistent_mode/persistent_demo.c -------------------------------------------------------------------------------- /aflplusplus/utils/persistent_mode/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/persistent_mode/test-instr.c -------------------------------------------------------------------------------- /aflplusplus/utils/plot_ui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/plot_ui/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/plot_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/plot_ui/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/plot_ui/afl-plot-ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/plot_ui/afl-plot-ui.c -------------------------------------------------------------------------------- /aflplusplus/utils/qbdi_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qbdi_mode/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/qbdi_mode/assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qbdi_mode/assets/screen1.png -------------------------------------------------------------------------------- /aflplusplus/utils/qbdi_mode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qbdi_mode/build.sh -------------------------------------------------------------------------------- /aflplusplus/utils/qbdi_mode/demo-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qbdi_mode/demo-so.c -------------------------------------------------------------------------------- /aflplusplus/utils/qbdi_mode/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qbdi_mode/template.cpp -------------------------------------------------------------------------------- /aflplusplus/utils/qemu_persistent_hook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qemu_persistent_hook/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/qemu_persistent_hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qemu_persistent_hook/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/qemu_persistent_hook/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/qemu_persistent_hook/test.c -------------------------------------------------------------------------------- /aflplusplus/utils/socket_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/socket_fuzzing/Makefile -------------------------------------------------------------------------------- /aflplusplus/utils/socket_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/socket_fuzzing/README.md -------------------------------------------------------------------------------- /aflplusplus/utils/socket_fuzzing/socketfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/aflplusplus/utils/socket_fuzzing/socketfuzz.c -------------------------------------------------------------------------------- /artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/README.md -------------------------------------------------------------------------------- /artifacts/afllive/boringssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/boringssl/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/boringssl/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/boringssl/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/boringssl/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/boringssl/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/boringssl/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/boringssl/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/boringssl/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/boringssl/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/coverage/sample.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/coverage/sample.bz2 -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/bzip2/sample.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/bzip2/sample.bz2 -------------------------------------------------------------------------------- /artifacts/afllive/htslib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/htslib/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/htslib/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/htslib/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/htslib/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/htslib/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/htslib/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/htslib/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/htslib/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/htslib/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/build.sh -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/coverage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/coverage/build.sh -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/coverage/eng.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/coverage/eng.traineddata -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/leptonica/eng.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/leptonica/eng.traineddata -------------------------------------------------------------------------------- /artifacts/afllive/libaom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libaom/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libaom/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libaom/coverage/raw.av1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/coverage/raw.av1 -------------------------------------------------------------------------------- /artifacts/afllive/libaom/coverage/run_cmds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/coverage/run_cmds.sh -------------------------------------------------------------------------------- /artifacts/afllive/libaom/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libaom/raw.av1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libaom/raw.av1 -------------------------------------------------------------------------------- /artifacts/afllive/libass/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libass/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libass/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libass/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/libass/coverage/subs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/coverage/subs.srt -------------------------------------------------------------------------------- /artifacts/afllive/libass/coverage/unsub.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/coverage/unsub.mp4 -------------------------------------------------------------------------------- /artifacts/afllive/libass/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libass/subs.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/subs.srt -------------------------------------------------------------------------------- /artifacts/afllive/libass/unsub.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libass/unsub.mp4 -------------------------------------------------------------------------------- /artifacts/afllive/libexif/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libexif/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libexif/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libexif/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libexif/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libexif/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libexif/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libexif/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/libexif/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libexif/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/build.sh -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/coverage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/coverage/build.sh -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/coverage/untitled.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/coverage/untitled.wav -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libgsm/untitled.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libgsm/untitled.wav -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/coverage/run_cmds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/coverage/run_cmds.sh -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/coverage/stream.ivf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/coverage/stream.ivf -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libvpx/stream.ivf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libvpx/stream.ivf -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/build_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/build_fuzz.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/coverage/build_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/coverage/build_cov.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/coverage/build_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/coverage/build_fuzz.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/coverage/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/coverage/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/libxml2/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/libxml2/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/openssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/openssl/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/openssl/build_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/build_fuzz.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/openssl/coverage/build_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/coverage/build_cov.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/coverage/build_fuzz_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/coverage/build_fuzz_cov.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/coverage/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/coverage/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/openssl/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/openssl/curated_config.json -------------------------------------------------------------------------------- /artifacts/afllive/opus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/opus/auto_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/auto_config.json -------------------------------------------------------------------------------- /artifacts/afllive/opus/build_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/build_fuzz.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/afllive/opus/coverage/build_cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/coverage/build_cov.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/coverage/build_fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/coverage/build_fuzz.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/coverage/build_log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/coverage/build_log.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/afllive/opus/curated_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/afllive/opus/curated_config.json -------------------------------------------------------------------------------- /artifacts/prepare_host_for_fuzzing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/prepare_host_for_fuzzing.sh -------------------------------------------------------------------------------- /artifacts/run_afllive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/run_afllive.sh -------------------------------------------------------------------------------- /artifacts/run_sota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/run_sota.sh -------------------------------------------------------------------------------- /artifacts/sota/htslib/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/htslib/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/htslib/c1#bounds.sam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/htslib/c1#bounds.sam -------------------------------------------------------------------------------- /artifacts/sota/htslib/c2.fa: -------------------------------------------------------------------------------- 1 | >c2 2 | CCAATAACC 3 | -------------------------------------------------------------------------------- /artifacts/sota/htslib/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/htslib/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/htslib/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/htslib/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/sota/htslib/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/htslib/run.sh -------------------------------------------------------------------------------- /artifacts/sota/leptonica/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/leptonica/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/leptonica/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/leptonica/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/leptonica/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/leptonica/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/sota/leptonica/eurotext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/leptonica/eurotext.png -------------------------------------------------------------------------------- /artifacts/sota/leptonica/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/leptonica/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libaom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libaom/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libaom/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libaom/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libaom/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libaom/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libaom/raw.av1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libaom/raw.av1 -------------------------------------------------------------------------------- /artifacts/sota/libaom/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libaom/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libgsm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libgsm/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libgsm/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libgsm/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libgsm/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libgsm/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libgsm/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libgsm/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libgsm/untitled.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libgsm/untitled.wav -------------------------------------------------------------------------------- /artifacts/sota/libvpx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libvpx/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libvpx/coverage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libvpx/coverage/Dockerfile -------------------------------------------------------------------------------- /artifacts/sota/libvpx/coverage/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libvpx/coverage/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libvpx/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libvpx/run.sh -------------------------------------------------------------------------------- /artifacts/sota/libvpx/stream.ivf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/artifacts/sota/libvpx/stream.ivf -------------------------------------------------------------------------------- /config_generator/derive_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/config_generator/derive_constraints.py -------------------------------------------------------------------------------- /config_generator/interesting_functions.ql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/config_generator/interesting_functions.ql -------------------------------------------------------------------------------- /config_generator/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/config_generator/run.sh -------------------------------------------------------------------------------- /coverage_utils/get_cov_from_profraws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/coverage_utils/get_cov_from_profraws.py -------------------------------------------------------------------------------- /coverage_utils/get_profraws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/coverage_utils/get_profraws.py -------------------------------------------------------------------------------- /coverage_utils/get_profraws_and_cov_testamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/coverage_utils/get_profraws_and_cov_testamp.py -------------------------------------------------------------------------------- /instrumentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/Makefile -------------------------------------------------------------------------------- /instrumentation/inc/Harnesser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/inc/Harnesser.h -------------------------------------------------------------------------------- /instrumentation/inc/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/inc/json.hpp -------------------------------------------------------------------------------- /instrumentation/inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/inc/utils.h -------------------------------------------------------------------------------- /instrumentation/inc/utils_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/inc/utils_common.h -------------------------------------------------------------------------------- /instrumentation/src/Harnesser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/src/Harnesser.cc -------------------------------------------------------------------------------- /instrumentation/src/pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/src/pass.cc -------------------------------------------------------------------------------- /instrumentation/src/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/instrumentation/src/utils.cc -------------------------------------------------------------------------------- /libgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/Makefile -------------------------------------------------------------------------------- /libgen/inc/ConstraintFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/ConstraintFactory.h -------------------------------------------------------------------------------- /libgen/inc/Dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/Dependencies.h -------------------------------------------------------------------------------- /libgen/inc/buff_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/buff_utils.h -------------------------------------------------------------------------------- /libgen/inc/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/json.hpp -------------------------------------------------------------------------------- /libgen/inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/types.h -------------------------------------------------------------------------------- /libgen/inc/utils_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/inc/utils_common.h -------------------------------------------------------------------------------- /libgen/src/ConstraintFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/src/ConstraintFactory.cc -------------------------------------------------------------------------------- /libgen/src/Dependencies.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/src/Dependencies.cc -------------------------------------------------------------------------------- /libgen/src/buff_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/src/buff_utils.cc -------------------------------------------------------------------------------- /libgen/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/src/main.cc -------------------------------------------------------------------------------- /libgen/src/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/libgen/src/types.cc -------------------------------------------------------------------------------- /testamp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/.gitignore -------------------------------------------------------------------------------- /testamp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/Makefile -------------------------------------------------------------------------------- /testamp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/README.md -------------------------------------------------------------------------------- /testamp/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/lib/Makefile -------------------------------------------------------------------------------- /testamp/lib/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/lib/src/main.c -------------------------------------------------------------------------------- /testamp/pass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/pass/Makefile -------------------------------------------------------------------------------- /testamp/pass/inc/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/pass/inc/json.hpp -------------------------------------------------------------------------------- /testamp/pass/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/pass/src/main.cc -------------------------------------------------------------------------------- /testamp/setup_fuzzers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OctavioGalland/afllive/HEAD/testamp/setup_fuzzers.py --------------------------------------------------------------------------------