├── AFLplusplus-PGE
├── .clang-format
├── .custom-format.py
├── .dockerignore
├── .gitignore
├── .gitmodules
├── Android.bp
├── CITATION.cff
├── CONTRIBUTING.md
├── Changelog.md
├── Dockerfile
├── GNUmakefile
├── GNUmakefile.gcc_plugin
├── GNUmakefile.llvm
├── LICENSE
├── Makefile
├── README.md
├── README.txt
├── 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
│ │ ├── stalker.h
│ │ ├── stats.h
│ │ └── util.h
│ ├── many-linux
│ │ ├── Dockerfile
│ │ ├── GNUmakefile
│ │ ├── Makefile
│ │ └── README.md
│ ├── src
│ │ ├── asan
│ │ │ ├── asan.c
│ │ │ ├── asan_arm32.c
│ │ │ ├── asan_arm64.c
│ │ │ ├── asan_x64.c
│ │ │ └── asan_x86.c
│ │ ├── cmplog
│ │ │ ├── cmplog.c
│ │ │ ├── cmplog_arm32.c
│ │ │ ├── cmplog_arm64.c
│ │ │ ├── cmplog_x64.c
│ │ │ └── cmplog_x86.c
│ │ ├── ctx
│ │ │ ├── ctx_arm32.c
│ │ │ ├── ctx_arm64.c
│ │ │ ├── ctx_x64.c
│ │ │ └── ctx_x86.c
│ │ ├── entry.c
│ │ ├── instrument
│ │ │ ├── instrument.c
│ │ │ ├── instrument_arm32.c
│ │ │ ├── instrument_arm64.c
│ │ │ ├── instrument_coverage.c
│ │ │ ├── instrument_debug.c
│ │ │ ├── instrument_x64.c
│ │ │ ├── instrument_x64_cache.c
│ │ │ └── instrument_x86.c
│ │ ├── intercept.c
│ │ ├── js
│ │ │ ├── api.js
│ │ │ ├── js.c
│ │ │ └── js_api.c
│ │ ├── lib
│ │ │ ├── lib.c
│ │ │ └── lib_apple.c
│ │ ├── main.c
│ │ ├── module.c
│ │ ├── output.c
│ │ ├── persistent
│ │ │ ├── persistent.c
│ │ │ ├── persistent_arm32.c
│ │ │ ├── persistent_arm64.c
│ │ │ ├── persistent_x64.c
│ │ │ └── persistent_x86.c
│ │ ├── prefetch.c
│ │ ├── ranges.c
│ │ ├── seccomp
│ │ │ ├── seccomp.c
│ │ │ ├── seccomp_atomic.c
│ │ │ ├── seccomp_callback.c
│ │ │ ├── seccomp_child.c
│ │ │ ├── seccomp_event.c
│ │ │ ├── seccomp_filter.c
│ │ │ ├── seccomp_print.c
│ │ │ ├── seccomp_socket.c
│ │ │ └── seccomp_syscall.c
│ │ ├── stalker.c
│ │ ├── stats
│ │ │ ├── stats.c
│ │ │ ├── stats_arm32.c
│ │ │ ├── stats_arm64.c
│ │ │ └── stats_x86_64.c
│ │ └── util.c
│ ├── test
│ │ ├── bloaty
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── cache
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── cache.c
│ │ ├── cmov
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── cmov.c
│ │ ├── cmplog
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── cmplog.c
│ │ │ └── get_section_addrs.py
│ │ ├── deferred
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── dynamic
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── testinstr.c
│ │ │ └── testinstrlib.c
│ │ ├── entry_point
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── exe
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── fasan
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── test.c
│ │ ├── freetype2
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── jpeg
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── js
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── entry.js
│ │ │ ├── fuzz.js
│ │ │ ├── main.js
│ │ │ ├── patch.js
│ │ │ ├── replace.js
│ │ │ ├── stalker.js
│ │ │ ├── test.c
│ │ │ └── test2.c
│ │ ├── libpcap
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── libxml
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── libxslt
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── osx-lib
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── harness.c
│ │ │ ├── harness2.c
│ │ │ ├── harness3.c
│ │ │ ├── lib.c
│ │ │ └── lib2.c
│ │ ├── output
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── frida_stderr.txt
│ │ │ ├── frida_stdout.txt
│ │ │ └── testinstr.c
│ │ ├── perf
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── perf.c
│ │ ├── persistent_ret
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── test.js
│ │ │ └── testinstr.c
│ │ ├── png
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── persistent
│ │ │ │ ├── GNUmakefile
│ │ │ │ ├── Makefile
│ │ │ │ └── hook
│ │ │ │ ├── GNUmakefile
│ │ │ │ ├── Makefile
│ │ │ │ ├── cmodule.js
│ │ │ │ └── load.js
│ │ ├── proj4
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── python
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── re2
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── sqlite
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── testinstr
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── unstable
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── unstable.c
│ │ └── vorbis
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ ├── ts
│ │ ├── lib
│ │ │ └── afl.ts
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── tsconfig.json
│ │ └── tslint.json
│ ├── ub1804
│ │ ├── Dockerfile
│ │ ├── GNUmakefile
│ │ └── Makefile
│ ├── update_frida_version.sh
│ └── util
│ │ ├── bin2c.c
│ │ └── get_symbol_addr.sh
├── include
│ ├── afl-as.h
│ ├── afl-fuzz.h
│ ├── afl-prealloc.h
│ ├── alloc-inl.h
│ ├── android-ashmem.h
│ ├── cmplog.h
│ ├── common.h
│ ├── config.h
│ ├── coverage-32.h
│ ├── coverage-64.h
│ ├── debug.h
│ ├── envs.h
│ ├── forkserver.h
│ ├── hash.h
│ ├── list.h
│ ├── pge.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-orig.so.cc
│ ├── SanitizerCoveragePCGUARD.so.cc
│ ├── afl-compiler-rt.o.c
│ ├── 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
│ └── pge-prefix-search.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
├── tmp.c
├── tmp.out
├── 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_pge.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
├── README.md
└── magma_integration
└── aflplusplus_pge_r90
├── build.sh
├── fetch.sh
├── findings.sh
├── instrument.sh
├── preinstall.sh
├── repo
├── .clang-format
├── .custom-format.py
├── .dockerignore
├── .gitignore
├── .gitmodules
├── Android.bp
├── CITATION.cff
├── CONTRIBUTING.md
├── Changelog.md
├── Dockerfile
├── GNUmakefile
├── GNUmakefile.gcc_plugin
├── GNUmakefile.llvm
├── LICENSE
├── Makefile
├── README.md
├── README.txt
├── 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
│ │ ├── stalker.h
│ │ ├── stats.h
│ │ └── util.h
│ ├── many-linux
│ │ ├── Dockerfile
│ │ ├── GNUmakefile
│ │ ├── Makefile
│ │ └── README.md
│ ├── src
│ │ ├── asan
│ │ │ ├── asan.c
│ │ │ ├── asan_arm32.c
│ │ │ ├── asan_arm64.c
│ │ │ ├── asan_x64.c
│ │ │ └── asan_x86.c
│ │ ├── cmplog
│ │ │ ├── cmplog.c
│ │ │ ├── cmplog_arm32.c
│ │ │ ├── cmplog_arm64.c
│ │ │ ├── cmplog_x64.c
│ │ │ └── cmplog_x86.c
│ │ ├── ctx
│ │ │ ├── ctx_arm32.c
│ │ │ ├── ctx_arm64.c
│ │ │ ├── ctx_x64.c
│ │ │ └── ctx_x86.c
│ │ ├── entry.c
│ │ ├── instrument
│ │ │ ├── instrument.c
│ │ │ ├── instrument_arm32.c
│ │ │ ├── instrument_arm64.c
│ │ │ ├── instrument_coverage.c
│ │ │ ├── instrument_debug.c
│ │ │ ├── instrument_x64.c
│ │ │ ├── instrument_x64_cache.c
│ │ │ └── instrument_x86.c
│ │ ├── intercept.c
│ │ ├── js
│ │ │ ├── api.js
│ │ │ ├── js.c
│ │ │ └── js_api.c
│ │ ├── lib
│ │ │ ├── lib.c
│ │ │ └── lib_apple.c
│ │ ├── main.c
│ │ ├── module.c
│ │ ├── output.c
│ │ ├── persistent
│ │ │ ├── persistent.c
│ │ │ ├── persistent_arm32.c
│ │ │ ├── persistent_arm64.c
│ │ │ ├── persistent_x64.c
│ │ │ └── persistent_x86.c
│ │ ├── prefetch.c
│ │ ├── ranges.c
│ │ ├── seccomp
│ │ │ ├── seccomp.c
│ │ │ ├── seccomp_atomic.c
│ │ │ ├── seccomp_callback.c
│ │ │ ├── seccomp_child.c
│ │ │ ├── seccomp_event.c
│ │ │ ├── seccomp_filter.c
│ │ │ ├── seccomp_print.c
│ │ │ ├── seccomp_socket.c
│ │ │ └── seccomp_syscall.c
│ │ ├── stalker.c
│ │ ├── stats
│ │ │ ├── stats.c
│ │ │ ├── stats_arm32.c
│ │ │ ├── stats_arm64.c
│ │ │ └── stats_x86_64.c
│ │ └── util.c
│ ├── test
│ │ ├── bloaty
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── cache
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── cache.c
│ │ ├── cmov
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── cmov.c
│ │ ├── cmplog
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── cmplog.c
│ │ │ └── get_section_addrs.py
│ │ ├── deferred
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── dynamic
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── testinstr.c
│ │ │ └── testinstrlib.c
│ │ ├── entry_point
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── exe
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── fasan
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── test.c
│ │ ├── freetype2
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── jpeg
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── js
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── entry.js
│ │ │ ├── fuzz.js
│ │ │ ├── main.js
│ │ │ ├── patch.js
│ │ │ ├── replace.js
│ │ │ ├── stalker.js
│ │ │ ├── test.c
│ │ │ └── test2.c
│ │ ├── libpcap
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── libxml
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── libxslt
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── osx-lib
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── harness.c
│ │ │ ├── harness2.c
│ │ │ ├── harness3.c
│ │ │ ├── lib.c
│ │ │ └── lib2.c
│ │ ├── output
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── frida_stderr.txt
│ │ │ ├── frida_stdout.txt
│ │ │ └── testinstr.c
│ │ ├── perf
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── perf.c
│ │ ├── persistent_ret
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ ├── test.js
│ │ │ └── testinstr.c
│ │ ├── png
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── persistent
│ │ │ │ ├── GNUmakefile
│ │ │ │ ├── Makefile
│ │ │ │ └── hook
│ │ │ │ ├── GNUmakefile
│ │ │ │ ├── Makefile
│ │ │ │ ├── cmodule.js
│ │ │ │ └── load.js
│ │ ├── proj4
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── python
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── re2
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── sqlite
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ │ ├── testinstr
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── testinstr.c
│ │ ├── unstable
│ │ │ ├── GNUmakefile
│ │ │ ├── Makefile
│ │ │ └── unstable.c
│ │ └── vorbis
│ │ │ ├── GNUmakefile
│ │ │ └── Makefile
│ ├── ts
│ │ ├── lib
│ │ │ └── afl.ts
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── tsconfig.json
│ │ └── tslint.json
│ ├── ub1804
│ │ ├── Dockerfile
│ │ ├── GNUmakefile
│ │ └── Makefile
│ ├── update_frida_version.sh
│ └── util
│ │ ├── bin2c.c
│ │ └── get_symbol_addr.sh
├── include
│ ├── afl-as.h
│ ├── afl-fuzz.h
│ ├── afl-prealloc.h
│ ├── alloc-inl.h
│ ├── android-ashmem.h
│ ├── cmplog.h
│ ├── common.h
│ ├── config.h
│ ├── coverage-32.h
│ ├── coverage-64.h
│ ├── debug.h
│ ├── envs.h
│ ├── forkserver.h
│ ├── hash.h
│ ├── list.h
│ ├── pge.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-orig.so.cc
│ ├── SanitizerCoveragePCGUARD.so.cc
│ ├── afl-compiler-rt.o.c
│ ├── 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
│ └── pge-prefix-search.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
├── tmp.c
├── tmp.out
├── 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_pge.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
├── run.sh
└── runonce.sh
/AFLplusplus-PGE/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/.clang-format
--------------------------------------------------------------------------------
/AFLplusplus-PGE/.custom-format.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/.custom-format.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/.dockerignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/.gitmodules
--------------------------------------------------------------------------------
/AFLplusplus-PGE/Android.bp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/Android.bp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/CITATION.cff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/CITATION.cff
--------------------------------------------------------------------------------
/AFLplusplus-PGE/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/CONTRIBUTING.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/Changelog.md:
--------------------------------------------------------------------------------
1 | docs/Changelog.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/Dockerfile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/GNUmakefile.gcc_plugin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/GNUmakefile.gcc_plugin
--------------------------------------------------------------------------------
/AFLplusplus-PGE/GNUmakefile.llvm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/GNUmakefile.llvm
--------------------------------------------------------------------------------
/AFLplusplus-PGE/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/LICENSE
--------------------------------------------------------------------------------
/AFLplusplus-PGE/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/README.txt
--------------------------------------------------------------------------------
/AFLplusplus-PGE/TODO.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/TODO.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-cmin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-cmin
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-cmin.bash:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-cmin.bash
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-persistent-config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-persistent-config
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-plot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-plot
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-system-config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-system-config
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-whatsup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-whatsup
--------------------------------------------------------------------------------
/AFLplusplus-PGE/afl-wine-trace:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/afl-wine-trace
--------------------------------------------------------------------------------
/AFLplusplus-PGE/config.h:
--------------------------------------------------------------------------------
1 | include/config.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/coresight_mode/.gitignore:
--------------------------------------------------------------------------------
1 | .local
2 | glibc*
3 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/coresight_mode/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/coresight_mode/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/coresight_mode/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/coresight_mode/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/coresight_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/coresight_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/Android.bp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/Android.bp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/XmlMutatorMin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/XmlMutatorMin.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/common.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/common.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/example.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/example.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/example.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/example.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/simple_example.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/simple_example.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/examples/wrapper_afl_min.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/examples/wrapper_afl_min.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/JSONC_VERSION:
--------------------------------------------------------------------------------
1 | af8dd4a307e7b837f9fa2959549548ace4afe08b
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz-helpers.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz-helpers.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz-util.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz-util.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/gramfuzz.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/hashmap.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/hashmap.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/hashmap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/hashmap.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/test.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/test.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/utarray.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/utarray.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/gramatron/uthash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/gramatron/uthash.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/grammar_mutator/GRAMMAR_VERSION:
--------------------------------------------------------------------------------
1 | ff4e5a2
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/grammar_mutator/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/grammar_mutator/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/honggfuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/honggfuzz.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/honggfuzz.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/honggfuzz.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/input.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/input.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/libhfcommon/log.h:
--------------------------------------------------------------------------------
1 | common.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/libhfcommon/util.h:
--------------------------------------------------------------------------------
1 | common.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/mangle.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/mangle.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/honggfuzz/mangle.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/honggfuzz/mangle.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libafl_base/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libafl_base/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libafl_base/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libafl_base/Cargo.toml
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libafl_base/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libafl_base/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libafl_base/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libafl_base/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libafl_base/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libafl_base/src/lib.rs
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerBuiltins.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerBuiltins.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerCommand.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerCommand.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerCorpus.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerCorpus.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDefs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDefs.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDictionary.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDictionary.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDriver.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerDriver.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFlags.def:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFlags.def
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFork.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFork.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFork.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerFork.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIO.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIO.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIO.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIO.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIOPosix.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerIOPosix.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerInterface.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerInterface.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerInternal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerInternal.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerLoop.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerLoop.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMain.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMerge.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMerge.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMerge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMerge.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMutate.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMutate.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMutate.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerMutate.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerOptions.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerOptions.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerPlatform.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerPlatform.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerRandom.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerRandom.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerSHA1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerSHA1.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerSHA1.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerSHA1.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerTracePC.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerTracePC.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerTracePC.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerTracePC.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerUtil.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerUtil.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerUtil.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/FuzzerUtil.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/libfuzzer.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/libfuzzer.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/libfuzzer/libfuzzer.inc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/libfuzzer/libfuzzer.inc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/LICENSE
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/custom_mutator_helpers.h:
--------------------------------------------------------------------------------
1 | ../examples/custom_mutator_helpers.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/libradamsa-test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/libradamsa-test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/libradamsa.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/libradamsa.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/radamsa-mutator.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/radamsa-mutator.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/radamsa/radamsa.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/radamsa/radamsa.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/rust/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/rust/Cargo.toml
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/rust/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/example/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/rust/example/Cargo.toml
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/example_lain/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/rust/example_lain/Cargo.toml
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/rust/example_lain/rust-toolchain:
--------------------------------------------------------------------------------
1 | nightly
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/symcc/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/symcc/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/symcc/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/symcc/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/custom_mutators/symcc/symcc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/custom_mutators/symcc/symcc.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/aff.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/aff.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/ass.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/ass.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/atom.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/atom.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/av1_dc.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/av1_dc.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/bash.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/bash.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/bdf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/bdf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/bmp.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/bmp.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/bz2.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/bz2.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/creole.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/creole.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/css.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/css.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/csv.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/csv.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/dds.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/dds.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/djvu.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/djvu.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/docommand.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/docommand.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/exif.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/exif.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/fbs.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/fbs.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/ftp.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/ftp.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/gif.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/gif.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/graphviz.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/graphviz.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/heif.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/heif.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/hoextdown.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/hoextdown.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/html_tags.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/html_tags.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/http.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/http.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/icc.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/icc.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/iccprofile.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/iccprofile.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/icns.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/icns.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/initfile.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/initfile.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/jbig2.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/jbig2.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/jpeg.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/jpeg.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/jpeg2000.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/jpeg2000.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/js.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/js.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/json.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/json.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/jsonnet.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/jsonnet.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/markdown.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/markdown.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/math.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/math.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/mathml.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/mathml.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/mp4.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/mp4.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/mysqld.dict:
--------------------------------------------------------------------------------
1 | user="root"
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/ogg.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/ogg.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/openexr.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/openexr.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/otf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/otf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/pbm.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/pbm.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/pcap.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/pcap.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/pdf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/pdf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/perl.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/perl.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/png.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/png.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/proj4.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/proj4.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/protobuf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/protobuf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/ps.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/ps.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/psd.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/psd.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/regexp.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/regexp.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/riff.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/riff.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/rss.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/rss.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/rst.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/rst.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/rtf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/rtf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/sas.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/sas.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/spss.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/spss.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/sql.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/sql.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/stata.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/stata.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/svg.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/svg.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/tex.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/tex.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/theme-load-fuzz.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/theme-load-fuzz.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/tiff.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/tiff.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/tokener_parse_ex.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/tokener_parse_ex.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/toml.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/toml.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/type42.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/type42.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/url.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/url.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/utf8.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/utf8.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/vcf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/vcf.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/vhd.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/vhd.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/vpx_dec.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/vpx_dec.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/wav.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/wav.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/webm.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/webm.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/webp.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/webp.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/wkt.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/wkt.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/x86.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/x86.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xml.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xml.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xml_UTF_16.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xml_UTF_16.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xml_UTF_16BE.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xml_UTF_16BE.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xml_UTF_16LE.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xml_UTF_16LE.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xpath.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xpath.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/xslt.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/xslt.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/yaml.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/yaml.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/yara.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/yara.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dictionaries/zip.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dictionaries/zip.dict
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/COPYING
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/Changelog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/Changelog.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/FAQ.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/INSTALL.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/INSTALL.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/afl-fuzz_approach.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/afl-fuzz_approach.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/best_practices.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/best_practices.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/custom_mutators.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/custom_mutators.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/env_variables.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/env_variables.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/features.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/features.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/fuzzing_binary-only_targets.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/fuzzing_binary-only_targets.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/fuzzing_in_depth.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/fuzzing_in_depth.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/ideas.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/ideas.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/important_changes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/important_changes.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/2_prepare_campaign.drawio.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/2_prepare_campaign.drawio.svg
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/3_fuzz_target.drawio.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/3_fuzz_target.drawio.svg
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/4_manage_campaign.drawio.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/4_manage_campaign.drawio.svg
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/afl_gzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/afl_gzip.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/grafana-afl++.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/grafana-afl++.json
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/screenshot.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/resources/statsd-grafana.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/resources/statsd-grafana.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/rpc_statsd.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/rpc_statsd.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/third_party_tools.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/third_party_tools.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/docs/tutorials.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/docs/tutorials.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/dynamic_list.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/dynamic_list.txt
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/DEBUGGING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/DEBUGGING.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/MapDensity.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/MapDensity.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/Scripting.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/Scripting.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/addr/addr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/addr/addr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/frida.map:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/frida.map
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/hook/frida_hook.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/hook/frida_hook.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/hook/qemu_hook.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/hook/qemu_hook.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/asan.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/asan.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/ctx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/ctx.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/entry.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/entry.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/frida_cmplog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/frida_cmplog.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/instrument.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/instrument.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/intercept.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/intercept.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/js.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/js.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/lib.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/lib.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/module.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/module.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/output.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/output.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/persistent.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/persistent.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/prefetch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/prefetch.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/ranges.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/ranges.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/seccomp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/seccomp.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/stalker.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/stalker.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/stats.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/stats.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/include/util.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/include/util.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/many-linux/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/many-linux/Dockerfile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/many-linux/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/many-linux/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/many-linux/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/many-linux/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/many-linux/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/many-linux/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/asan/asan.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/asan/asan.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/asan/asan_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/asan/asan_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/asan/asan_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/asan/asan_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/asan/asan_x64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/asan/asan_x64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/asan/asan_x86.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/asan/asan_x86.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_x64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_x64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_x86.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/cmplog/cmplog_x86.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/ctx/ctx_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/ctx/ctx_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/ctx/ctx_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/ctx/ctx_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/ctx/ctx_x64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/ctx/ctx_x64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/ctx/ctx_x86.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/ctx/ctx_x86.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/entry.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/entry.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument_debug.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument_debug.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument_x64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument_x64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/instrument/instrument_x86.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/instrument/instrument_x86.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/intercept.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/intercept.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/js/api.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/js/api.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/js/js.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/js/js.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/js/js_api.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/js/js_api.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/lib/lib.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/lib/lib.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/lib/lib_apple.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/lib/lib_apple.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/main.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/main.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/module.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/module.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/output.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/output.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/persistent/persistent.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/persistent/persistent.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/persistent/persistent_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/persistent/persistent_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/persistent/persistent_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/persistent/persistent_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/persistent/persistent_x64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/persistent/persistent_x64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/persistent/persistent_x86.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/persistent/persistent_x86.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/prefetch.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/prefetch.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/ranges.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/ranges.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_atomic.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_atomic.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_callback.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_callback.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_child.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_child.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_event.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_event.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_filter.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_filter.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_print.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_print.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_socket.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_socket.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_syscall.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/seccomp/seccomp_syscall.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/stalker.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/stalker.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/stats/stats.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/stats/stats.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/stats/stats_arm32.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/stats/stats_arm32.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/stats/stats_arm64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/stats/stats_arm64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/stats/stats_x86_64.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/stats/stats_x86_64.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/src/util.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/src/util.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/bloaty/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/bloaty/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/bloaty/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/bloaty/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cache/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cache/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cache/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cache/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cache/cache.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cache/cache.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmov/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmov/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmov/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmov/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmov/cmov.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmov/cmov.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmplog/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmplog/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmplog/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmplog/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmplog/cmplog.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmplog/cmplog.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/cmplog/get_section_addrs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/cmplog/get_section_addrs.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/deferred/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/deferred/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/deferred/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/deferred/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/deferred/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/deferred/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/dynamic/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/dynamic/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/dynamic/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/dynamic/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/dynamic/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/dynamic/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/dynamic/testinstrlib.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/dynamic/testinstrlib.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/entry_point/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/entry_point/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/entry_point/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/entry_point/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/entry_point/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/entry_point/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/exe/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/exe/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/exe/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/exe/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/exe/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/exe/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/fasan/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/fasan/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/fasan/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/fasan/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/fasan/test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/fasan/test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/freetype2/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/freetype2/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/freetype2/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/freetype2/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/jpeg/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/jpeg/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/jpeg/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/jpeg/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/entry.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/entry.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/fuzz.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/fuzz.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/main.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/patch.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/patch.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/replace.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/replace.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/stalker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/stalker.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/js/test2.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/js/test2.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libpcap/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libpcap/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libpcap/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libpcap/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libxml/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libxml/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libxml/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libxml/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libxslt/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libxslt/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/libxslt/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/libxslt/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/harness.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/harness.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/harness2.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/harness2.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/harness3.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/harness3.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/lib.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/lib.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/osx-lib/lib2.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/osx-lib/lib2.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/output/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/output/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/output/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/output/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/output/frida_stderr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/output/frida_stderr.txt
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/output/frida_stdout.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/output/frida_stdout.txt
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/output/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/output/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/perf/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/perf/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/perf/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/perf/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/perf/perf.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/perf/perf.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/persistent_ret/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/persistent_ret/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/persistent_ret/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/persistent_ret/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/persistent_ret/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/persistent_ret/test.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/persistent_ret/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/persistent_ret/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/persistent/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/persistent/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/persistent/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/persistent/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/persistent/hook/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/persistent/hook/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/png/persistent/hook/load.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/png/persistent/hook/load.js
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/proj4/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/proj4/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/proj4/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/proj4/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/python/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/python/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/python/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/python/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/re2/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/re2/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/re2/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/re2/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/sqlite/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/sqlite/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/sqlite/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/sqlite/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/testinstr/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/testinstr/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/testinstr/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/testinstr/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/testinstr/testinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/testinstr/testinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/unstable/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/unstable/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/unstable/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/unstable/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/unstable/unstable.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/unstable/unstable.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/vorbis/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/vorbis/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/test/vorbis/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/test/vorbis/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ts/lib/afl.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ts/lib/afl.ts
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ts/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ts/package-lock.json
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ts/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ts/package.json
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ts/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ts/tsconfig.json
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ts/tslint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ts/tslint.json
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ub1804/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ub1804/Dockerfile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ub1804/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ub1804/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/ub1804/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/ub1804/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/update_frida_version.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/update_frida_version.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/util/bin2c.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/util/bin2c.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/frida_mode/util/get_symbol_addr.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/frida_mode/util/get_symbol_addr.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/afl-as.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/afl-as.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/afl-fuzz.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/afl-fuzz.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/afl-prealloc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/afl-prealloc.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/alloc-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/alloc-inl.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/android-ashmem.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/android-ashmem.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/cmplog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/cmplog.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/common.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/common.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/config.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/config.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/coverage-32.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/coverage-32.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/coverage-64.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/coverage-64.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/debug.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/debug.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/envs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/envs.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/forkserver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/forkserver.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/hash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/hash.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/list.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/list.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/pge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/pge.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/sharedmem.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/sharedmem.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/snapshot-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/snapshot-inl.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/types.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/types.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/include/xxhash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/include/xxhash.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.cmplog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.cmplog.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.gcc_plugin.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.gcc_plugin.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.instrument_list.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.instrument_list.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.laf-intel.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.laf-intel.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.llvm.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.llvm.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.lto.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.lto.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/README.persistent_mode.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/README.persistent_mode.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/SanitizerCoverageLTO.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/SanitizerCoverageLTO.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-compiler-rt.o.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-compiler-rt.o.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-gcc-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-gcc-pass.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-llvm-common.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-llvm-common.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-llvm-common.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-llvm-common.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-llvm-dict2file.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-llvm-dict2file.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-llvm-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-llvm-pass.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/afl-llvm-rt-lto.o.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/afl-llvm-rt-lto.o.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/cmplog-instructions-pass.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/cmplog-instructions-pass.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/cmplog-routines-pass.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/cmplog-routines-pass.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/cmplog-switches-pass.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/cmplog-switches-pass.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/compare-transform-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/compare-transform-pass.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/gcc_plugin.COPYING3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/gcc_plugin.COPYING3
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/llvm-alternative-coverage.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/llvm-alternative-coverage.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/split-compares-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/split-compares-pass.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/instrumentation/split-switches-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/instrumentation/split-switches-pass.so.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/LIBNYX_VERSION:
--------------------------------------------------------------------------------
1 | acaf7f6
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/PACKER_VERSION:
--------------------------------------------------------------------------------
1 | 86b159b
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/QEMU_NYX_VERSION:
--------------------------------------------------------------------------------
1 | 5c8cf793ec
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/build_nyx_support.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/build_nyx_support.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/custom_harness/example.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/custom_harness/example.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/custom_harness/fuzz.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/custom_harness/fuzz.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/custom_harness/fuzz_no_pt.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/custom_harness/fuzz_no_pt.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/nyx_mode/update_ref.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/nyx_mode/update_ref.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/QEMUAFL_VERSION:
--------------------------------------------------------------------------------
1 | a120c3feb5
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/README.persistent.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/README.persistent.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/README.wine.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/README.wine.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/build_qemu_support.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/build_qemu_support.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libcompcov/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libcompcov/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libcompcov/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libcompcov/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libcompcov/compcovtest.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libcompcov/compcovtest.cc
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libcompcov/libcompcov.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libcompcov/libcompcov.so.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libcompcov/pmparser.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libcompcov/pmparser.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/dlmalloc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/dlmalloc.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/hooks.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/hooks.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/libqasan.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/libqasan.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/libqasan.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/libqasan.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/malloc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/malloc.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/map_macro.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/map_macro.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/patch.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/patch.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/string.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/string.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/libqasan/uninstrument.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/libqasan/uninstrument.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/unsigaction/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/unsigaction/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/unsigaction/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/unsigaction/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/unsigaction/unsigaction.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/unsigaction/unsigaction.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/qemu_mode/update_ref.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/qemu_mode/update_ref.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-analyze.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-analyze.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-as.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-as.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-cc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-cc.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-common.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-common.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-forkserver.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-forkserver.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-bitmap.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-bitmap.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-cmplog.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-cmplog.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-extras.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-extras.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-init.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-init.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-mutators.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-mutators.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-one.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-one.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-python.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-python.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-queue.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-queue.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-redqueen.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-redqueen.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-run.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-run.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-state.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-state.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-stats.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-stats.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz-statsd.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz-statsd.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-fuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-fuzz.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-gotcpu.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-gotcpu.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-ld-lto.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-ld-lto.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-performance.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-performance.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-sharedmem.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-sharedmem.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-showmap.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-showmap.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/afl-tmin.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/afl-tmin.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/src/pge-prefix-search.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/src/pge-prefix-search.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test-instr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test-instr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/checkcommit.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/checkcommit.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-all.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-all.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-basic.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-basic.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-cmplog.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-cmplog.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-compcov.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-compcov.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-custom-mutator.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-custom-mutator.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-custom-mutators.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-custom-mutators.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-dlopen.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-dlopen.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-floatingpoint.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-floatingpoint.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-fpExtra.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-fpExtra.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-fp_Infcases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-fp_Infcases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-fp_NaNcases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-fp_NaNcases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-fp_cases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-fp_cases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-fp_minusZerocases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-fp_minusZerocases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-frida-mode.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-frida-mode.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-gcc-plugin.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-gcc-plugin.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-int_cases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-int_cases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-libextensions.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-libextensions.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-llvm-lto.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-llvm-lto.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-llvm.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-llvm.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-multiple-mutators.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-multiple-mutators.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-performance.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-performance.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-post.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-post.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-pre.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-pre.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-qemu-mode.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-qemu-mode.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-uint_cases.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-uint_cases.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-unicorn-mode.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-unicorn-mode.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-unittests.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-unittests.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/test-unsigaction.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/test-unsigaction.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/unittests/unit_hash.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/unittests/unit_hash.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/unittests/unit_list.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/unittests/unit_list.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/unittests/unit_maybe_alloc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/unittests/unit_maybe_alloc.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/unittests/unit_preallocable.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/unittests/unit_preallocable.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/test/unittests/unit_rand.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/test/unittests/unit_rand.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/archives/common/ar/small_archive.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/archives/common/ar/small_archive.a
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/bmp/not_kitty.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/bmp/not_kitty.bmp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/gif/not_kitty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/gif/not_kitty.gif
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/ico/not_kitty.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/ico/not_kitty.ico
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/jp2/not_kitty.jp2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/jp2/not_kitty.jp2
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/jpeg/not_kitty.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/jpeg/not_kitty.jpg
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/jxr/not_kitty.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/jxr/not_kitty.jxr
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/png/not_kitty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/png/not_kitty.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/png/not_kitty_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/png/not_kitty_alpha.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/png/not_kitty_gamma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/png/not_kitty_gamma.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/png/not_kitty_icc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/png/not_kitty_icc.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/tiff/not_kitty.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/tiff/not_kitty.tiff
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/images/webp/not_kitty.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/images/webp/not_kitty.webp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/multimedia/h264/small_movie.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/multimedia/h264/small_movie.mp4
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/elf/small_exec.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/others/elf/small_exec.elf
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/js/small_script.js:
--------------------------------------------------------------------------------
1 | if (1==1) eval('1');
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/pcap/small_capture.pcap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/others/pcap/small_capture.pcap
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/pdf/small.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/others/pdf/small.pdf
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/rtf/small_document.rtf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/others/rtf/small_document.rtf
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/sql/simple_queries.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/testcases/others/sql/simple_queries.sql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/text/hello_world.txt:
--------------------------------------------------------------------------------
1 | hello
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/testcases/others/xml/small_document.xml:
--------------------------------------------------------------------------------
1 | d
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/tmp.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/tmp.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/tmp.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/tmp.out
--------------------------------------------------------------------------------
/AFLplusplus-PGE/types.h:
--------------------------------------------------------------------------------
1 | include/types.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/UNICORNAFL_VERSION:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/UNICORNAFL_VERSION
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/build_unicorn_support.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/build_unicorn_support.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/COMPILE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/COMPILE.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/harness.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/harness.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/persistent_target.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/persistent_target.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_all.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/sample_all.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/c/simple_target_x86_64:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/c/simple_target_x86_64
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/compcov_x64/COMPILE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/compcov_x64/COMPILE.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/persistent/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/COMPILE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/persistent/COMPILE.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/persistent/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/harness.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/persistent/harness.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/persistent/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/python_simple/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/python_simple/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/python_simple/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/python_simple/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/python_simple/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/.gitignore
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/c/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/c/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/c/harness.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/c/harness.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/rust/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | Cargo.lock
3 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/rust/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/rust/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/sample_inputs/a:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/samples/speedtest/target.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/samples/speedtest/target.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/unicorn_mode/update_uc_ref.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/unicorn_mode/update_uc_ref.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_network_proxy/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_network_proxy/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_network_proxy/Makefile:
--------------------------------------------------------------------------------
1 | all:
2 | @echo please use GNU make, thanks!
3 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_network_proxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_network_proxy/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_network_proxy/afl-network-client.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_network_proxy/afl-network-client.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_network_proxy/afl-network-server.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_network_proxy/afl-network-server.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_proxy/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_proxy/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_proxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_proxy/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_proxy/afl-proxy.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_proxy/afl-proxy.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/TODO:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/TODO
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/afl-untracer.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/afl-untracer.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/ida_get_patchpoints.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/ida_get_patchpoints.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/libtestinstr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/libtestinstr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/afl_untracer/patches.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/afl_untracer/patches.txt
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/GNUmakefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver_pge.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver_pge.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver_test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/aflpp_driver_test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/aflpp_qemu_driver.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/aflpp_qemu_driver.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/aflpp_driver/aflpp_qemu_driver_hook.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/aflpp_driver/aflpp_qemu_driver_hook.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/analysis_scripts/queue2csv.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/analysis_scripts/queue2csv.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/argv_fuzzing/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/argv_fuzzing/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/argv_fuzzing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/argv_fuzzing/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/argv_fuzzing/argv-fuzz-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/argv_fuzzing/argv-fuzz-inl.h
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/argv_fuzzing/argvfuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/argv_fuzzing/argvfuzz.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/asan_cgroups/limit_memory.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/asan_cgroups/limit_memory.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/autodict-ql.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/autodict-ql.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/build-codeql.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/build-codeql.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/litan.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/litan.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/litool.ql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/litool.ql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/memcmp-str.ql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/memcmp-str.ql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/memcmp-strings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/memcmp-strings.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/qlpack.yml:
--------------------------------------------------------------------------------
1 | name: autodict
2 | version: 0.0.0
3 | libraryPathDependencies: codeql-cpp
4 |
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/readme.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/stan-strings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/stan-strings.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/strcmp-str.ql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/strcmp-str.ql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/strcmp-strings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/strcmp-strings.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/strncmp-str.ql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/strncmp-str.ql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/strncmp-strings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/strncmp-strings.py
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/autodict_ql/strtool.ql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/autodict_ql/strtool.ql
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/bash_shellshock/shellshock-fuzz.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/bash_shellshock/shellshock-fuzz.diff
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/canvas_harness/canvas_harness.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/canvas_harness/canvas_harness.html
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/crash_triage/triage_crashes.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/crash_triage/triage_crashes.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/defork/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/defork/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/defork/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/defork/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/defork/defork.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/defork/defork.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/defork/forking_target.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/defork/forking_target.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/distributed_fuzzing/sync_script.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/distributed_fuzzing/sync_script.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libdislocator/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libdislocator/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libdislocator/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libdislocator/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libdislocator/libdislocator.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libdislocator/libdislocator.so.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libpng_no_checksum/libpng-nocrc.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libpng_no_checksum/libpng-nocrc.patch
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libtokencap/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libtokencap/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libtokencap/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libtokencap/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/libtokencap/libtokencap.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/libtokencap/libtokencap.so.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/persistent_mode/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/persistent_mode/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/persistent_mode/persistent_demo.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/persistent_mode/persistent_demo.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/persistent_mode/persistent_demo_new.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/persistent_mode/persistent_demo_new.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/persistent_mode/test-instr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/persistent_mode/test-instr.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/plot_ui/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/plot_ui/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/plot_ui/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/plot_ui/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/plot_ui/afl-plot-ui.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/plot_ui/afl-plot-ui.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qbdi_mode/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qbdi_mode/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qbdi_mode/assets/screen1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qbdi_mode/assets/screen1.png
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qbdi_mode/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qbdi_mode/build.sh
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qbdi_mode/demo-so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qbdi_mode/demo-so.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qbdi_mode/template.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qbdi_mode/template.cpp
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qemu_persistent_hook/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qemu_persistent_hook/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qemu_persistent_hook/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qemu_persistent_hook/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qemu_persistent_hook/read_into_rdi.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qemu_persistent_hook/read_into_rdi.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/qemu_persistent_hook/test.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/qemu_persistent_hook/test.c
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/socket_fuzzing/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/socket_fuzzing/Makefile
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/socket_fuzzing/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/socket_fuzzing/README.md
--------------------------------------------------------------------------------
/AFLplusplus-PGE/utils/socket_fuzzing/socketfuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/AFLplusplus-PGE/utils/socket_fuzzing/socketfuzz.c
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/README.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/build.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/build.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/fetch.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/fetch.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/findings.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/findings.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/instrument.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/instrument.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/preinstall.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/preinstall.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/.clang-format:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/.clang-format
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/.custom-format.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/.custom-format.py
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/.dockerignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/.dockerignore
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/.gitignore
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/.gitmodules
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/Android.bp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/Android.bp
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/CITATION.cff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/CITATION.cff
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/CONTRIBUTING.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/Changelog.md:
--------------------------------------------------------------------------------
1 | docs/Changelog.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/Dockerfile
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/GNUmakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/GNUmakefile
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/LICENSE
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/Makefile
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/README.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/README.txt
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/TODO.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/TODO.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/afl-cmin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/afl-cmin
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/afl-cmin.bash:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/afl-cmin.bash
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/afl-plot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/afl-plot
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/afl-whatsup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/afl-whatsup
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/afl-wine-trace:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/afl-wine-trace
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/config.h:
--------------------------------------------------------------------------------
1 | include/config.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/coresight_mode/.gitignore:
--------------------------------------------------------------------------------
1 | .local
2 | glibc*
3 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/gramatron/JSONC_VERSION:
--------------------------------------------------------------------------------
1 | af8dd4a307e7b837f9fa2959549548ace4afe08b
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/grammar_mutator/GRAMMAR_VERSION:
--------------------------------------------------------------------------------
1 | ff4e5a2
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/honggfuzz/libhfcommon/log.h:
--------------------------------------------------------------------------------
1 | common.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/honggfuzz/libhfcommon/util.h:
--------------------------------------------------------------------------------
1 | common.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/radamsa/custom_mutator_helpers.h:
--------------------------------------------------------------------------------
1 | ../examples/custom_mutator_helpers.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/custom_mutators/rust/example_lain/rust-toolchain:
--------------------------------------------------------------------------------
1 | nightly
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/dictionaries/mysqld.dict:
--------------------------------------------------------------------------------
1 | user="root"
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/docs/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/docs/COPYING
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/docs/FAQ.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/docs/FAQ.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/docs/README.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/docs/ideas.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/docs/ideas.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/include/envs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/include/envs.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/include/hash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/include/hash.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/include/list.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/include/list.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/include/pge.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/include/pge.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/nyx_mode/LIBNYX_VERSION:
--------------------------------------------------------------------------------
1 | acaf7f6
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/nyx_mode/PACKER_VERSION:
--------------------------------------------------------------------------------
1 | 86b159b
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/nyx_mode/QEMU_NYX_VERSION:
--------------------------------------------------------------------------------
1 | 5c8cf793ec
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/qemu_mode/QEMUAFL_VERSION:
--------------------------------------------------------------------------------
1 | a120c3feb5
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/src/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/src/README.md
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/src/afl-as.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/src/afl-as.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/src/afl-cc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/src/afl-cc.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/src/afl-fuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/src/afl-fuzz.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/src/afl-tmin.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/src/afl-tmin.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/test-instr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/test-instr.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/testcases/others/js/small_script.js:
--------------------------------------------------------------------------------
1 | if (1==1) eval('1');
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/testcases/others/text/hello_world.txt:
--------------------------------------------------------------------------------
1 | hello
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/testcases/others/xml/small_document.xml:
--------------------------------------------------------------------------------
1 | d
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/tmp.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/tmp.c
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/tmp.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/repo/tmp.out
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/types.h:
--------------------------------------------------------------------------------
1 | include/types.h
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/c/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/c/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/c/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/c/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/c/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/persistent/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/persistent/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/persistent/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/persistent/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/persistent/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/python_simple/sample_inputs/sample1.bin:
--------------------------------------------------------------------------------
1 | abcd
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/python_simple/sample_inputs/sample2.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/python_simple/sample_inputs/sample3.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/python_simple/sample_inputs/sample4.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/python_simple/sample_inputs/sample5.bin:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/speedtest/rust/.gitignore:
--------------------------------------------------------------------------------
1 | target
2 | Cargo.lock
3 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/unicorn_mode/samples/speedtest/sample_inputs/a:
--------------------------------------------------------------------------------
1 | a
2 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/utils/afl_network_proxy/Makefile:
--------------------------------------------------------------------------------
1 | all:
2 | @echo please use GNU make, thanks!
3 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/repo/utils/autodict_ql/qlpack.yml:
--------------------------------------------------------------------------------
1 | name: autodict
2 | version: 0.0.0
3 | libraryPathDependencies: codeql-cpp
4 |
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/run.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/run.sh
--------------------------------------------------------------------------------
/magma_integration/aflplusplus_pge_r90/runonce.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shao-hua-li/AFLplusplus-PGE/HEAD/magma_integration/aflplusplus_pge_r90/runonce.sh
--------------------------------------------------------------------------------