├── .clang-format ├── .custom-format.py ├── .gitignore ├── .travis.yml ├── Android.bp ├── Android.mk ├── CONTRIBUTING.md ├── Changelog.md ├── Dockerfile ├── GNUmakefile ├── LICENSE ├── Makefile ├── QuickStartGuide.md ├── README.AFLplusplus ├── README.md ├── TODO.md ├── afl-cmin ├── afl-cmin.bash ├── afl-plot ├── afl-system-config ├── afl-whatsup ├── afl-wine-trace ├── config.h ├── dictionaries ├── README.dictionaries ├── README.md ├── avi.dict ├── elf.dict ├── gif.dict ├── html_tags.dict ├── jpeg.dict ├── jpeg2000.dict ├── js.dict ├── json.dict ├── pdf.dict ├── png.dict ├── regexp.dict ├── sql.dict ├── tiff.dict ├── wav.dict ├── webp.dict └── xml.dict ├── docs ├── COPYING ├── Changelog.md ├── INSTALL.md ├── PATCHES.md ├── QuickStartGuide.md ├── README.MOpt.md ├── README.md ├── README.radamsa.md ├── binaryonly_fuzzing.md ├── custom_mutators.md ├── env_variables.md ├── historical_notes.md ├── ideas.md ├── life_pro_tips.md ├── notes_for_asan.md ├── parallel_fuzzing.md ├── perf_tips.md ├── power_schedules.md ├── sister_projects.md ├── status_screen.md ├── technical_details.md ├── visualization │ └── afl_gzip.png └── vuln_samples │ ├── bash-cmd-exec.var │ ├── bash-uninit-mem.var │ ├── ffmpeg-h264-bad-ptr-800m.mp4 │ ├── ffmpeg-h264-bad-read.mp4 │ ├── ffmpeg-h264-call-stack-overflow.mp4 │ ├── file-fpu-exception.elf │ ├── firefox-bmp-leak.bmp │ ├── firefox-chrome-leak.jpg │ ├── firefox-gif-leak.gif │ ├── firefox-gif-leak2.gif │ ├── jxrlib-crash.jxr │ ├── jxrlib-crash2.jxr │ ├── jxrlib-crash3.jxr │ ├── jxrlib-crash4.jxr │ ├── lesspipe-cpio-bad-write.cpio │ ├── libjpeg-sos-leak.jpg │ ├── libjpeg-turbo-dht-leak.jpg │ ├── libtiff-bad-write.tif │ ├── libtiff-uninit-mem.tif │ ├── libtiff-uninit-mem2.tif │ ├── libtiff-uninit-mem3.tif │ ├── libtiff-uninit-mem4.tif │ ├── libxml2-bad-read.xml │ ├── msie-dht-leak.jpg │ ├── msie-jxr-mem-leak.jxr │ ├── msie-png-mem-leak.png │ ├── msie-tiff-mem-leak.tif │ ├── msie-zlib-dos.png │ ├── openssl-null-ptr.der │ ├── openssl-null-ptr2.der │ ├── photoshop-mem-leak.jpg │ ├── sqlite-bad-free.sql │ ├── sqlite-bad-ptr.sql │ ├── sqlite-bad-ptr2.sql │ ├── sqlite-bad-ptr3.sql │ ├── sqlite-heap-overflow.sql │ ├── sqlite-heap-overwrite.sql │ ├── sqlite-negative-memset.sql │ ├── sqlite-null-ptr1.sql │ ├── sqlite-null-ptr10.sql │ ├── sqlite-null-ptr11.sql │ ├── sqlite-null-ptr12.sql │ ├── sqlite-null-ptr13.sql │ ├── sqlite-null-ptr14.sql │ ├── sqlite-null-ptr15.sql │ ├── sqlite-null-ptr2.sql │ ├── sqlite-null-ptr3.sql │ ├── sqlite-null-ptr4.sql │ ├── sqlite-null-ptr5.sql │ ├── sqlite-null-ptr6.sql │ ├── sqlite-null-ptr7.sql │ ├── sqlite-null-ptr8.sql │ ├── sqlite-null-ptr9.sql │ ├── sqlite-oob-read.sql │ ├── sqlite-oob-write.sql │ ├── sqlite-stack-buf-overflow.sql │ ├── sqlite-stack-exhaustion.sql │ ├── sqlite-unint-mem.sql │ ├── sqlite-use-after-free.sql │ ├── strings-bfd-badptr.elf │ ├── strings-bfd-badptr2.elf │ ├── strings-stack-overflow │ ├── strings-unchecked-ctr.elf │ ├── tcpdump-arp-crash.pcap │ ├── tcpdump-ppp-crash.pcap │ ├── unrtf-arbitrary-read.rtf │ └── unzip-t-mem-corruption.zip ├── examples ├── README.md ├── argv_fuzzing │ ├── Makefile │ ├── README.md │ ├── argv-fuzz-inl.h │ └── argvfuzz.c ├── asan_cgroups │ └── limit_memory.sh ├── bash_shellshock │ └── shellshock-fuzz.diff ├── canvas_harness │ └── canvas_harness.html ├── crash_triage │ └── triage_crashes.sh ├── custom_mutators │ ├── Makefile │ ├── README.md │ ├── XmlMutatorMin.py │ ├── common.py │ ├── custom_mutator_helpers.h │ ├── example.c │ ├── example.py │ ├── simple-chunk-replace.py │ └── wrapper_afl_min.py ├── distributed_fuzzing │ └── sync_script.sh ├── libpng_no_checksum │ └── libpng-nocrc.patch ├── persistent_demo │ └── persistent_demo.c ├── post_library │ ├── post_library.so.c │ └── post_library_png.so.c ├── qemu_persistent_hook │ ├── README.md │ ├── read_into_rdi.c │ └── test.c └── socket_fuzzing │ ├── Makefile │ ├── README.md │ └── socketfuzz.c ├── gcc_plugin ├── GNUmakefile ├── Makefile ├── README.md ├── README.whitelist.md ├── afl-gcc-fast.c ├── afl-gcc-pass.so.cc └── afl-gcc-rt.o.c ├── include ├── afl-as.h ├── afl-fuzz.h ├── afl-prealloc.h ├── alloc-inl.h ├── android-ashmem.h ├── cmplog.h ├── common.h ├── config.h ├── debug.h ├── envs.h ├── forkserver.h ├── hash.h ├── list.h ├── sharedmem.h ├── smart-chunks.h ├── smart-utils.h ├── snapshot-inl.h └── types.h ├── input_models ├── avi.xml ├── elf.xml ├── gif.xml ├── jpeg.xml ├── jpeg2000.xml ├── mp3.xml ├── pcap.xml ├── pdf.xml ├── png.xml └── wav.xml ├── libdislocator ├── Makefile ├── README.md └── libdislocator.so.c ├── libtokencap ├── GNUmakefile ├── Makefile ├── README.md └── libtokencap.so.c ├── llvm_mode ├── GNUmakefile ├── LLVMInsTrim.so.cc ├── Makefile ├── MarkNodes.cc ├── MarkNodes.h ├── NOTES ├── README.cmplog.md ├── README.ctx.md ├── README.instrim.md ├── README.laf-intel.md ├── README.lto.md ├── README.md ├── README.neverzero.md ├── README.ngram.md ├── README.snapshot.md ├── README.whitelist.md ├── TODO ├── afl-clang-fast.c ├── afl-ld.c ├── afl-llvm-lto-instrumentation.so.cc ├── afl-llvm-lto-whitelist.so.cc ├── afl-llvm-pass.so.cc ├── afl-llvm-rt.o.c ├── cmplog-instructions-pass.cc ├── cmplog-routines-pass.cc ├── compare-transform-pass.so.cc ├── llvm-ngram-coverage.h ├── split-compares-pass.so.cc └── split-switches-pass.so.cc ├── peach-3.0.202.patch ├── qbdi_mode ├── README.md ├── assets │ └── screen1.png ├── build.sh ├── demo-so.c └── template.cpp ├── qemu_mode ├── README.md ├── README.persistent.md ├── build_qemu_support.sh ├── libcompcov │ ├── Makefile │ ├── README.md │ ├── compcovtest.cc │ ├── libcompcov.so.c │ └── pmparser.h ├── patches │ ├── __init__.py.diff │ ├── afl-qemu-common.h │ ├── afl-qemu-cpu-inl.h │ ├── afl-qemu-cpu-translate-inl.h │ ├── afl-qemu-floats.h │ ├── afl-qemu-tcg-inl.h │ ├── afl-qemu-tcg-runtime-inl.h │ ├── afl-qemu-translate-inl.h │ ├── arm-translate-a64.diff │ ├── arm-translate.diff │ ├── bsd-elfload.diff │ ├── configure.diff │ ├── cpu-exec.diff │ ├── elfload.diff │ ├── i386-fpu_helper.diff │ ├── i386-ops_sse.diff │ ├── i386-translate.diff │ ├── make_strncpy_safe.diff │ ├── softfloat.diff │ ├── syscall.diff │ ├── tcg-runtime-head.diff │ ├── tcg-runtime.diff │ ├── tcg.diff │ ├── translate-all.diff │ └── translator.diff └── unsigaction │ ├── GNUmakefile │ ├── Makefile │ ├── README.md │ └── unsigaction.c ├── setup_env.sh ├── src ├── README.md ├── afl-analyze.c ├── afl-as.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.c ├── afl-gcc.c ├── afl-gotcpu.c ├── afl-sharedmem.c ├── afl-showmap.c ├── afl-tmin.c ├── smart-chunks.c ├── smart-utils.c └── third_party │ └── libradamsa │ ├── .gitignore │ ├── GNUmakefile │ ├── LICENSE │ ├── README.md │ ├── libradamsa-test.c │ ├── libradamsa.c │ └── radamsa.h ├── test-instr.c ├── test ├── checkcommit.sh ├── test-compcov.c ├── test-custom-mutator.c ├── test-performance.sh ├── test-unsigaction.c ├── test.sh └── unittests │ ├── unit_list.c │ ├── unit_maybe_alloc.c │ └── unit_preallocable.c ├── testcases ├── README.md ├── aflsmart │ ├── avi │ │ ├── cbw3.avi │ │ ├── composite.avi │ │ ├── coralastra2.avi │ │ ├── drop.avi │ │ ├── flame.avi │ │ ├── fp.avi │ │ ├── fuzzed.avi │ │ ├── lavafalls.avi │ │ ├── pod.avi │ │ └── quetzal.avi │ ├── elf │ │ ├── bitmap │ │ ├── bunzip2 │ │ ├── cat │ │ ├── echo │ │ ├── elfedit │ │ ├── empty │ │ ├── false │ │ ├── gcc-5 │ │ ├── grep │ │ ├── hello │ │ ├── less │ │ ├── ls │ │ ├── lsof │ │ ├── mkdir │ │ ├── more │ │ ├── ping │ │ ├── sed │ │ ├── sysinfo │ │ ├── true │ │ ├── uname │ │ └── zsync │ ├── gif │ │ ├── aquarium.gif │ │ ├── bali.gif │ │ ├── brain.gif │ │ ├── czoch.gif │ │ ├── flattened_brain.gif │ │ ├── hershey.gif │ │ ├── lineup_16.gif │ │ ├── mri.gif │ │ ├── polyfish_lines.gif │ │ └── prototein.gif │ ├── jpeg │ │ ├── not_kitty.jpg │ │ ├── testimgari.jpg │ │ ├── testimgint.jpg │ │ ├── testorig.jpg │ │ ├── testorig12.jpg │ │ ├── w3c_home.jpg │ │ ├── w3c_home_256.jpg │ │ └── w3c_home_gray.jpg │ ├── jpeg2000 │ │ ├── file1.jp2 │ │ ├── file2.jp2 │ │ ├── file3.jp2 │ │ ├── file4.jp2 │ │ ├── file5.jp2 │ │ ├── file6.jp2 │ │ ├── file8.jp2 │ │ └── file9.jp2 │ ├── mp3 │ │ ├── airportsmall.mp3 │ │ ├── edensmall.mp3 │ │ ├── gypsysmall.mp3 │ │ ├── heretostaysmall.mp3 │ │ ├── lordsmall.mp3 │ │ ├── mpthreetest.mp3 │ │ ├── olddogsmall.mp3 │ │ ├── onlyalonelygirlsmall.mp3 │ │ ├── onlyroadsmall.mp3 │ │ ├── paradiserowsmall.mp3 │ │ ├── perfectloverssmall.mp3 │ │ └── ticketsmall.mp3 │ ├── pcap │ │ ├── Apple_IP-over-IEEE_1394_Packet.pcap │ │ ├── NTLM-wenchao.pcap │ │ ├── bfd-raw-auth-md5.pcap │ │ ├── bfd-raw-auth-simple.pcap │ │ └── ipv4frags.pcap │ ├── pdf │ │ ├── isartor-6-1-13-t01-fail-a.pdf │ │ ├── isartor-6-1-2-t01-fail-a.pdf │ │ ├── isartor-6-1-6-t01-fail-a.pdf │ │ ├── isartor-6-1-8-t01-fail-a.pdf │ │ ├── isartor-6-4-t01-fail-a.pdf │ │ ├── isartor-6-5-3-t01-fail-a.pdf │ │ ├── isartor-6-9-t01-fail-a.pdf │ │ ├── pdf.pdf │ │ ├── sample.pdf │ │ └── small.pdf │ ├── png │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── ftbbn0g01.png │ │ ├── ftbbn0g02.png │ │ ├── ftbbn0g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn0g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n0g08.png │ │ ├── ftp0n2c08.png │ │ ├── ftp0n3p08.png │ │ ├── ftp1n3p08.png │ │ ├── ibasn0g08.png │ │ ├── ibasn0g16.png │ │ ├── ibasn2c08.png │ │ ├── ibasn2c16.png │ │ ├── ibasn3p08.png │ │ ├── ibasn4a08.png │ │ ├── ibasn4a16.png │ │ ├── ibasn6a08.png │ │ ├── ibasn6a16.png │ │ ├── iftbbn2c16.png │ │ ├── iftbbn3p08.png │ │ ├── iftbgn2c16.png │ │ ├── iftbgn3p08.png │ │ ├── iftbrn2c08.png │ │ ├── iftbwn0g16.png │ │ ├── iftbwn3p08.png │ │ ├── iftbyn3p08.png │ │ ├── iftp0n0g08.png │ │ ├── iftp0n2c08.png │ │ ├── iftp0n3p08.png │ │ └── iftp1n3p08.png │ └── wav │ │ ├── Roland-JV-2080-101-Bass-C2.wav │ │ ├── Roland-JV-2080-Bass-Pizz-C2.wav │ │ ├── Roland-JV-2080-Choir-Aahs-C4.wav │ │ ├── Roland-JV-2080-Harp-C4.wav │ │ ├── Roland-JV-2080-PizzicatoStr-C5.wav │ │ ├── Roland-JV-2080-SynVox-C4.wav │ │ ├── Roland-JV-2080-Vocal-Oohz-C4.wav │ │ ├── low_town_groove.wav │ │ ├── rhgroove.wav │ │ ├── smooth-o.wav │ │ └── smooth_sting.wav ├── archives │ ├── common │ │ ├── ar │ │ │ └── small_archive.a │ │ ├── bzip2 │ │ │ └── small_archive.bz2 │ │ ├── cab │ │ │ └── small_archive.cab │ │ ├── compress │ │ │ └── small_archive.Z │ │ ├── cpio │ │ │ └── small_archive.cpio │ │ ├── gzip │ │ │ └── small_archive.gz │ │ ├── lzo │ │ │ └── small_archive.lzo │ │ ├── rar │ │ │ └── small_archive.rar │ │ ├── tar │ │ │ └── small_archive.tar │ │ ├── xz │ │ │ └── small_archive.xz │ │ └── zip │ │ │ └── small_archive.zip │ └── exotic │ │ ├── arj │ │ └── small_archive.arj │ │ ├── lha │ │ └── small_archive.lha │ │ ├── lrzip │ │ └── small_archive.lrz │ │ ├── lzip │ │ └── small_archive.lz │ │ ├── lzma │ │ └── small_archive.lzma │ │ ├── rzip │ │ └── small_archive.rz │ │ └── zoo │ │ └── small_archive.zoo ├── images │ ├── bmp │ │ └── not_kitty.bmp │ ├── gif │ │ └── not_kitty.gif │ ├── ico │ │ └── not_kitty.ico │ ├── jp2 │ │ └── not_kitty.jp2 │ ├── jpeg │ │ └── not_kitty.jpg │ ├── jxr │ │ └── not_kitty.jxr │ ├── png │ │ ├── not_kitty.png │ │ ├── not_kitty_alpha.png │ │ ├── not_kitty_gamma.png │ │ └── not_kitty_icc.png │ ├── tiff │ │ └── not_kitty.tiff │ └── webp │ │ └── not_kitty.webp ├── multimedia │ └── h264 │ │ └── small_movie.mp4 └── others │ ├── elf │ └── small_exec.elf │ ├── js │ └── small_script.js │ ├── pcap │ └── small_capture.pcap │ ├── pdf │ └── small.pdf │ ├── rtf │ └── small_document.rtf │ ├── sql │ └── simple_queries.sql │ ├── text │ └── hello_world.txt │ └── xml │ └── small_document.xml ├── types.h └── unicorn_mode ├── README.md ├── build_unicorn_support.sh ├── helper_scripts ├── template_test_harness.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.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 └── 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 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/.clang-format -------------------------------------------------------------------------------- /.custom-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/.custom-format.py -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/.travis.yml -------------------------------------------------------------------------------- /Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/Android.bp -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | Makefile -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- 1 | docs/Changelog.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/Dockerfile -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo please use GNU make, thanks! 3 | -------------------------------------------------------------------------------- /QuickStartGuide.md: -------------------------------------------------------------------------------- 1 | docs/QuickStartGuide.md -------------------------------------------------------------------------------- /README.AFLplusplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/README.AFLplusplus -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/TODO.md -------------------------------------------------------------------------------- /afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-cmin -------------------------------------------------------------------------------- /afl-cmin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-cmin.bash -------------------------------------------------------------------------------- /afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-plot -------------------------------------------------------------------------------- /afl-system-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-system-config -------------------------------------------------------------------------------- /afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-whatsup -------------------------------------------------------------------------------- /afl-wine-trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/afl-wine-trace -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- 1 | include/config.h -------------------------------------------------------------------------------- /dictionaries/README.dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/README.dictionaries -------------------------------------------------------------------------------- /dictionaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/README.md -------------------------------------------------------------------------------- /dictionaries/avi.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/avi.dict -------------------------------------------------------------------------------- /dictionaries/elf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/elf.dict -------------------------------------------------------------------------------- /dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/gif.dict -------------------------------------------------------------------------------- /dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /dictionaries/jpeg2000.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/jpeg2000.dict -------------------------------------------------------------------------------- /dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/js.dict -------------------------------------------------------------------------------- /dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/json.dict -------------------------------------------------------------------------------- /dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/pdf.dict -------------------------------------------------------------------------------- /dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/png.dict -------------------------------------------------------------------------------- /dictionaries/regexp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/regexp.dict -------------------------------------------------------------------------------- /dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/sql.dict -------------------------------------------------------------------------------- /dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/tiff.dict -------------------------------------------------------------------------------- /dictionaries/wav.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/wav.dict -------------------------------------------------------------------------------- /dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/webp.dict -------------------------------------------------------------------------------- /dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/dictionaries/xml.dict -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/Changelog.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/PATCHES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/PATCHES.md -------------------------------------------------------------------------------- /docs/QuickStartGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/QuickStartGuide.md -------------------------------------------------------------------------------- /docs/README.MOpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/README.MOpt.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README.radamsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/README.radamsa.md -------------------------------------------------------------------------------- /docs/binaryonly_fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/binaryonly_fuzzing.md -------------------------------------------------------------------------------- /docs/custom_mutators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/custom_mutators.md -------------------------------------------------------------------------------- /docs/env_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/env_variables.md -------------------------------------------------------------------------------- /docs/historical_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/historical_notes.md -------------------------------------------------------------------------------- /docs/ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/ideas.md -------------------------------------------------------------------------------- /docs/life_pro_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/life_pro_tips.md -------------------------------------------------------------------------------- /docs/notes_for_asan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/notes_for_asan.md -------------------------------------------------------------------------------- /docs/parallel_fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/parallel_fuzzing.md -------------------------------------------------------------------------------- /docs/perf_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/perf_tips.md -------------------------------------------------------------------------------- /docs/power_schedules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/power_schedules.md -------------------------------------------------------------------------------- /docs/sister_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/sister_projects.md -------------------------------------------------------------------------------- /docs/status_screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/status_screen.md -------------------------------------------------------------------------------- /docs/technical_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/technical_details.md -------------------------------------------------------------------------------- /docs/visualization/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/visualization/afl_gzip.png -------------------------------------------------------------------------------- /docs/vuln_samples/bash-cmd-exec.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/bash-cmd-exec.var -------------------------------------------------------------------------------- /docs/vuln_samples/bash-uninit-mem.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/bash-uninit-mem.var -------------------------------------------------------------------------------- /docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4 -------------------------------------------------------------------------------- /docs/vuln_samples/ffmpeg-h264-bad-read.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/ffmpeg-h264-bad-read.mp4 -------------------------------------------------------------------------------- /docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4 -------------------------------------------------------------------------------- /docs/vuln_samples/file-fpu-exception.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/file-fpu-exception.elf -------------------------------------------------------------------------------- /docs/vuln_samples/firefox-bmp-leak.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/firefox-bmp-leak.bmp -------------------------------------------------------------------------------- /docs/vuln_samples/firefox-chrome-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/firefox-chrome-leak.jpg -------------------------------------------------------------------------------- /docs/vuln_samples/firefox-gif-leak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/firefox-gif-leak.gif -------------------------------------------------------------------------------- /docs/vuln_samples/firefox-gif-leak2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/firefox-gif-leak2.gif -------------------------------------------------------------------------------- /docs/vuln_samples/jxrlib-crash.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/jxrlib-crash.jxr -------------------------------------------------------------------------------- /docs/vuln_samples/jxrlib-crash2.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/jxrlib-crash2.jxr -------------------------------------------------------------------------------- /docs/vuln_samples/jxrlib-crash3.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/jxrlib-crash3.jxr -------------------------------------------------------------------------------- /docs/vuln_samples/jxrlib-crash4.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/jxrlib-crash4.jxr -------------------------------------------------------------------------------- /docs/vuln_samples/lesspipe-cpio-bad-write.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/lesspipe-cpio-bad-write.cpio -------------------------------------------------------------------------------- /docs/vuln_samples/libjpeg-sos-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libjpeg-sos-leak.jpg -------------------------------------------------------------------------------- /docs/vuln_samples/libjpeg-turbo-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libjpeg-turbo-dht-leak.jpg -------------------------------------------------------------------------------- /docs/vuln_samples/libtiff-bad-write.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libtiff-bad-write.tif -------------------------------------------------------------------------------- /docs/vuln_samples/libtiff-uninit-mem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libtiff-uninit-mem.tif -------------------------------------------------------------------------------- /docs/vuln_samples/libtiff-uninit-mem2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libtiff-uninit-mem2.tif -------------------------------------------------------------------------------- /docs/vuln_samples/libtiff-uninit-mem3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libtiff-uninit-mem3.tif -------------------------------------------------------------------------------- /docs/vuln_samples/libtiff-uninit-mem4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libtiff-uninit-mem4.tif -------------------------------------------------------------------------------- /docs/vuln_samples/libxml2-bad-read.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/libxml2-bad-read.xml -------------------------------------------------------------------------------- /docs/vuln_samples/msie-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/msie-dht-leak.jpg -------------------------------------------------------------------------------- /docs/vuln_samples/msie-jxr-mem-leak.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/msie-jxr-mem-leak.jxr -------------------------------------------------------------------------------- /docs/vuln_samples/msie-png-mem-leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/msie-png-mem-leak.png -------------------------------------------------------------------------------- /docs/vuln_samples/msie-tiff-mem-leak.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/msie-tiff-mem-leak.tif -------------------------------------------------------------------------------- /docs/vuln_samples/msie-zlib-dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/msie-zlib-dos.png -------------------------------------------------------------------------------- /docs/vuln_samples/openssl-null-ptr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/openssl-null-ptr.der -------------------------------------------------------------------------------- /docs/vuln_samples/openssl-null-ptr2.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/openssl-null-ptr2.der -------------------------------------------------------------------------------- /docs/vuln_samples/photoshop-mem-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/photoshop-mem-leak.jpg -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-bad-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-bad-free.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-bad-ptr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-bad-ptr.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-bad-ptr2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-bad-ptr2.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-bad-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-bad-ptr3.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-heap-overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-heap-overflow.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-heap-overwrite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-heap-overwrite.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-negative-memset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-negative-memset.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr1.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr10.sql: -------------------------------------------------------------------------------- 1 | SELECT fts3_tokenizer(@0()); 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr11.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr12.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr13.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr14.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr15.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr2.sql: -------------------------------------------------------------------------------- 1 | DETACH(select group_concat(q)); 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr3.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr4.sql: -------------------------------------------------------------------------------- 1 | select n()AND+#00; 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr5.sql: -------------------------------------------------------------------------------- 1 | select e.*,0 from(s,(L))e; 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr6.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr7.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t USING fts4(tokenize=); 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr8.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE p(a UNIQUE,PRIMARY KEY('a'))WITHOUT rowid; 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-null-ptr9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-null-ptr9.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-oob-read.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-oob-read.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-oob-write.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-oob-write.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-stack-buf-overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-stack-buf-overflow.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-stack-exhaustion.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t0 USING fts4(content=t0); 2 | -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-unint-mem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-unint-mem.sql -------------------------------------------------------------------------------- /docs/vuln_samples/sqlite-use-after-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/sqlite-use-after-free.sql -------------------------------------------------------------------------------- /docs/vuln_samples/strings-bfd-badptr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/strings-bfd-badptr.elf -------------------------------------------------------------------------------- /docs/vuln_samples/strings-bfd-badptr2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/strings-bfd-badptr2.elf -------------------------------------------------------------------------------- /docs/vuln_samples/strings-stack-overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/strings-stack-overflow -------------------------------------------------------------------------------- /docs/vuln_samples/strings-unchecked-ctr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/strings-unchecked-ctr.elf -------------------------------------------------------------------------------- /docs/vuln_samples/tcpdump-arp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/tcpdump-arp-crash.pcap -------------------------------------------------------------------------------- /docs/vuln_samples/tcpdump-ppp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/tcpdump-ppp-crash.pcap -------------------------------------------------------------------------------- /docs/vuln_samples/unrtf-arbitrary-read.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/unrtf-arbitrary-read.rtf -------------------------------------------------------------------------------- /docs/vuln_samples/unzip-t-mem-corruption.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/docs/vuln_samples/unzip-t-mem-corruption.zip -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/argv_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/argv_fuzzing/Makefile -------------------------------------------------------------------------------- /examples/argv_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/argv_fuzzing/README.md -------------------------------------------------------------------------------- /examples/argv_fuzzing/argv-fuzz-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/argv_fuzzing/argv-fuzz-inl.h -------------------------------------------------------------------------------- /examples/argv_fuzzing/argvfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/argv_fuzzing/argvfuzz.c -------------------------------------------------------------------------------- /examples/asan_cgroups/limit_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/asan_cgroups/limit_memory.sh -------------------------------------------------------------------------------- /examples/bash_shellshock/shellshock-fuzz.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/bash_shellshock/shellshock-fuzz.diff -------------------------------------------------------------------------------- /examples/canvas_harness/canvas_harness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/canvas_harness/canvas_harness.html -------------------------------------------------------------------------------- /examples/crash_triage/triage_crashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/crash_triage/triage_crashes.sh -------------------------------------------------------------------------------- /examples/custom_mutators/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/Makefile -------------------------------------------------------------------------------- /examples/custom_mutators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/README.md -------------------------------------------------------------------------------- /examples/custom_mutators/XmlMutatorMin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/XmlMutatorMin.py -------------------------------------------------------------------------------- /examples/custom_mutators/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/common.py -------------------------------------------------------------------------------- /examples/custom_mutators/custom_mutator_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/custom_mutator_helpers.h -------------------------------------------------------------------------------- /examples/custom_mutators/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/example.c -------------------------------------------------------------------------------- /examples/custom_mutators/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/example.py -------------------------------------------------------------------------------- /examples/custom_mutators/simple-chunk-replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/simple-chunk-replace.py -------------------------------------------------------------------------------- /examples/custom_mutators/wrapper_afl_min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/custom_mutators/wrapper_afl_min.py -------------------------------------------------------------------------------- /examples/distributed_fuzzing/sync_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/distributed_fuzzing/sync_script.sh -------------------------------------------------------------------------------- /examples/libpng_no_checksum/libpng-nocrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/libpng_no_checksum/libpng-nocrc.patch -------------------------------------------------------------------------------- /examples/persistent_demo/persistent_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/persistent_demo/persistent_demo.c -------------------------------------------------------------------------------- /examples/post_library/post_library.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/post_library/post_library.so.c -------------------------------------------------------------------------------- /examples/post_library/post_library_png.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/post_library/post_library_png.so.c -------------------------------------------------------------------------------- /examples/qemu_persistent_hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/qemu_persistent_hook/README.md -------------------------------------------------------------------------------- /examples/qemu_persistent_hook/read_into_rdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/qemu_persistent_hook/read_into_rdi.c -------------------------------------------------------------------------------- /examples/qemu_persistent_hook/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/qemu_persistent_hook/test.c -------------------------------------------------------------------------------- /examples/socket_fuzzing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/socket_fuzzing/Makefile -------------------------------------------------------------------------------- /examples/socket_fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/socket_fuzzing/README.md -------------------------------------------------------------------------------- /examples/socket_fuzzing/socketfuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/examples/socket_fuzzing/socketfuzz.c -------------------------------------------------------------------------------- /gcc_plugin/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/GNUmakefile -------------------------------------------------------------------------------- /gcc_plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/Makefile -------------------------------------------------------------------------------- /gcc_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/README.md -------------------------------------------------------------------------------- /gcc_plugin/README.whitelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/README.whitelist.md -------------------------------------------------------------------------------- /gcc_plugin/afl-gcc-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/afl-gcc-fast.c -------------------------------------------------------------------------------- /gcc_plugin/afl-gcc-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/afl-gcc-pass.so.cc -------------------------------------------------------------------------------- /gcc_plugin/afl-gcc-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/gcc_plugin/afl-gcc-rt.o.c -------------------------------------------------------------------------------- /include/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/afl-as.h -------------------------------------------------------------------------------- /include/afl-fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/afl-fuzz.h -------------------------------------------------------------------------------- /include/afl-prealloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/afl-prealloc.h -------------------------------------------------------------------------------- /include/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/alloc-inl.h -------------------------------------------------------------------------------- /include/android-ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/android-ashmem.h -------------------------------------------------------------------------------- /include/cmplog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/cmplog.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/config.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/envs.h: -------------------------------------------------------------------------------- 1 | 2 | extern char *afl_environment_variables[]; 3 | 4 | -------------------------------------------------------------------------------- /include/forkserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/forkserver.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/list.h -------------------------------------------------------------------------------- /include/sharedmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/sharedmem.h -------------------------------------------------------------------------------- /include/smart-chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/smart-chunks.h -------------------------------------------------------------------------------- /include/smart-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/smart-utils.h -------------------------------------------------------------------------------- /include/snapshot-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/snapshot-inl.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/include/types.h -------------------------------------------------------------------------------- /input_models/avi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/avi.xml -------------------------------------------------------------------------------- /input_models/elf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/elf.xml -------------------------------------------------------------------------------- /input_models/gif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/gif.xml -------------------------------------------------------------------------------- /input_models/jpeg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/jpeg.xml -------------------------------------------------------------------------------- /input_models/jpeg2000.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/jpeg2000.xml -------------------------------------------------------------------------------- /input_models/mp3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/mp3.xml -------------------------------------------------------------------------------- /input_models/pcap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/pcap.xml -------------------------------------------------------------------------------- /input_models/pdf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/pdf.xml -------------------------------------------------------------------------------- /input_models/png.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/png.xml -------------------------------------------------------------------------------- /input_models/wav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/input_models/wav.xml -------------------------------------------------------------------------------- /libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libdislocator/Makefile -------------------------------------------------------------------------------- /libdislocator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libdislocator/README.md -------------------------------------------------------------------------------- /libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /libtokencap/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libtokencap/GNUmakefile -------------------------------------------------------------------------------- /libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libtokencap/Makefile -------------------------------------------------------------------------------- /libtokencap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libtokencap/README.md -------------------------------------------------------------------------------- /libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /llvm_mode/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/GNUmakefile -------------------------------------------------------------------------------- /llvm_mode/LLVMInsTrim.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/LLVMInsTrim.so.cc -------------------------------------------------------------------------------- /llvm_mode/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo please use GNU make, thanks! 3 | -------------------------------------------------------------------------------- /llvm_mode/MarkNodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/MarkNodes.cc -------------------------------------------------------------------------------- /llvm_mode/MarkNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/MarkNodes.h -------------------------------------------------------------------------------- /llvm_mode/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/NOTES -------------------------------------------------------------------------------- /llvm_mode/README.cmplog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.cmplog.md -------------------------------------------------------------------------------- /llvm_mode/README.ctx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.ctx.md -------------------------------------------------------------------------------- /llvm_mode/README.instrim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.instrim.md -------------------------------------------------------------------------------- /llvm_mode/README.laf-intel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.laf-intel.md -------------------------------------------------------------------------------- /llvm_mode/README.lto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.lto.md -------------------------------------------------------------------------------- /llvm_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.md -------------------------------------------------------------------------------- /llvm_mode/README.neverzero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.neverzero.md -------------------------------------------------------------------------------- /llvm_mode/README.ngram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.ngram.md -------------------------------------------------------------------------------- /llvm_mode/README.snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.snapshot.md -------------------------------------------------------------------------------- /llvm_mode/README.whitelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/README.whitelist.md -------------------------------------------------------------------------------- /llvm_mode/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/TODO -------------------------------------------------------------------------------- /llvm_mode/afl-clang-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-clang-fast.c -------------------------------------------------------------------------------- /llvm_mode/afl-ld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-ld.c -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-lto-instrumentation.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-llvm-lto-instrumentation.so.cc -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-lto-whitelist.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-llvm-lto-whitelist.so.cc -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/afl-llvm-rt.o.c -------------------------------------------------------------------------------- /llvm_mode/cmplog-instructions-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/cmplog-instructions-pass.cc -------------------------------------------------------------------------------- /llvm_mode/cmplog-routines-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/cmplog-routines-pass.cc -------------------------------------------------------------------------------- /llvm_mode/compare-transform-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/compare-transform-pass.so.cc -------------------------------------------------------------------------------- /llvm_mode/llvm-ngram-coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/llvm-ngram-coverage.h -------------------------------------------------------------------------------- /llvm_mode/split-compares-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/split-compares-pass.so.cc -------------------------------------------------------------------------------- /llvm_mode/split-switches-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/llvm_mode/split-switches-pass.so.cc -------------------------------------------------------------------------------- /peach-3.0.202.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/peach-3.0.202.patch -------------------------------------------------------------------------------- /qbdi_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qbdi_mode/README.md -------------------------------------------------------------------------------- /qbdi_mode/assets/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qbdi_mode/assets/screen1.png -------------------------------------------------------------------------------- /qbdi_mode/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qbdi_mode/build.sh -------------------------------------------------------------------------------- /qbdi_mode/demo-so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qbdi_mode/demo-so.c -------------------------------------------------------------------------------- /qbdi_mode/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qbdi_mode/template.cpp -------------------------------------------------------------------------------- /qemu_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/README.md -------------------------------------------------------------------------------- /qemu_mode/README.persistent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/README.persistent.md -------------------------------------------------------------------------------- /qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /qemu_mode/libcompcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/libcompcov/Makefile -------------------------------------------------------------------------------- /qemu_mode/libcompcov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/libcompcov/README.md -------------------------------------------------------------------------------- /qemu_mode/libcompcov/compcovtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/libcompcov/compcovtest.cc -------------------------------------------------------------------------------- /qemu_mode/libcompcov/libcompcov.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/libcompcov/libcompcov.so.c -------------------------------------------------------------------------------- /qemu_mode/libcompcov/pmparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/libcompcov/pmparser.h -------------------------------------------------------------------------------- /qemu_mode/patches/__init__.py.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/__init__.py.diff -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-common.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-cpu-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-cpu-inl.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-cpu-translate-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-cpu-translate-inl.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-floats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-floats.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-tcg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-tcg-inl.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-tcg-runtime-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-tcg-runtime-inl.h -------------------------------------------------------------------------------- /qemu_mode/patches/afl-qemu-translate-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/afl-qemu-translate-inl.h -------------------------------------------------------------------------------- /qemu_mode/patches/arm-translate-a64.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/arm-translate-a64.diff -------------------------------------------------------------------------------- /qemu_mode/patches/arm-translate.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/arm-translate.diff -------------------------------------------------------------------------------- /qemu_mode/patches/bsd-elfload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/bsd-elfload.diff -------------------------------------------------------------------------------- /qemu_mode/patches/configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/configure.diff -------------------------------------------------------------------------------- /qemu_mode/patches/cpu-exec.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/cpu-exec.diff -------------------------------------------------------------------------------- /qemu_mode/patches/elfload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/elfload.diff -------------------------------------------------------------------------------- /qemu_mode/patches/i386-fpu_helper.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/i386-fpu_helper.diff -------------------------------------------------------------------------------- /qemu_mode/patches/i386-ops_sse.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/i386-ops_sse.diff -------------------------------------------------------------------------------- /qemu_mode/patches/i386-translate.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/i386-translate.diff -------------------------------------------------------------------------------- /qemu_mode/patches/make_strncpy_safe.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/make_strncpy_safe.diff -------------------------------------------------------------------------------- /qemu_mode/patches/softfloat.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/softfloat.diff -------------------------------------------------------------------------------- /qemu_mode/patches/syscall.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/syscall.diff -------------------------------------------------------------------------------- /qemu_mode/patches/tcg-runtime-head.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/tcg-runtime-head.diff -------------------------------------------------------------------------------- /qemu_mode/patches/tcg-runtime.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/tcg-runtime.diff -------------------------------------------------------------------------------- /qemu_mode/patches/tcg.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/tcg.diff -------------------------------------------------------------------------------- /qemu_mode/patches/translate-all.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/translate-all.diff -------------------------------------------------------------------------------- /qemu_mode/patches/translator.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/patches/translator.diff -------------------------------------------------------------------------------- /qemu_mode/unsigaction/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/unsigaction/GNUmakefile -------------------------------------------------------------------------------- /qemu_mode/unsigaction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/unsigaction/Makefile -------------------------------------------------------------------------------- /qemu_mode/unsigaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/unsigaction/README.md -------------------------------------------------------------------------------- /qemu_mode/unsigaction/unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/qemu_mode/unsigaction/unsigaction.c -------------------------------------------------------------------------------- /setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/setup_env.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/README.md -------------------------------------------------------------------------------- /src/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-analyze.c -------------------------------------------------------------------------------- /src/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-as.c -------------------------------------------------------------------------------- /src/afl-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-common.c -------------------------------------------------------------------------------- /src/afl-forkserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-forkserver.c -------------------------------------------------------------------------------- /src/afl-fuzz-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-bitmap.c -------------------------------------------------------------------------------- /src/afl-fuzz-cmplog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-cmplog.c -------------------------------------------------------------------------------- /src/afl-fuzz-extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-extras.c -------------------------------------------------------------------------------- /src/afl-fuzz-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-init.c -------------------------------------------------------------------------------- /src/afl-fuzz-mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-mutators.c -------------------------------------------------------------------------------- /src/afl-fuzz-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-one.c -------------------------------------------------------------------------------- /src/afl-fuzz-python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-python.c -------------------------------------------------------------------------------- /src/afl-fuzz-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-queue.c -------------------------------------------------------------------------------- /src/afl-fuzz-redqueen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-redqueen.c -------------------------------------------------------------------------------- /src/afl-fuzz-run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-run.c -------------------------------------------------------------------------------- /src/afl-fuzz-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-state.c -------------------------------------------------------------------------------- /src/afl-fuzz-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz-stats.c -------------------------------------------------------------------------------- /src/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-fuzz.c -------------------------------------------------------------------------------- /src/afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-gcc.c -------------------------------------------------------------------------------- /src/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-gotcpu.c -------------------------------------------------------------------------------- /src/afl-sharedmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-sharedmem.c -------------------------------------------------------------------------------- /src/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-showmap.c -------------------------------------------------------------------------------- /src/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/afl-tmin.c -------------------------------------------------------------------------------- /src/smart-chunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/smart-chunks.c -------------------------------------------------------------------------------- /src/smart-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/smart-utils.c -------------------------------------------------------------------------------- /src/third_party/libradamsa/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.o 3 | libradamsa-test 4 | -------------------------------------------------------------------------------- /src/third_party/libradamsa/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/GNUmakefile -------------------------------------------------------------------------------- /src/third_party/libradamsa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/LICENSE -------------------------------------------------------------------------------- /src/third_party/libradamsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/README.md -------------------------------------------------------------------------------- /src/third_party/libradamsa/libradamsa-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/libradamsa-test.c -------------------------------------------------------------------------------- /src/third_party/libradamsa/libradamsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/libradamsa.c -------------------------------------------------------------------------------- /src/third_party/libradamsa/radamsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/src/third_party/libradamsa/radamsa.h -------------------------------------------------------------------------------- /test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test-instr.c -------------------------------------------------------------------------------- /test/checkcommit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/checkcommit.sh -------------------------------------------------------------------------------- /test/test-compcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/test-compcov.c -------------------------------------------------------------------------------- /test/test-custom-mutator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/test-custom-mutator.c -------------------------------------------------------------------------------- /test/test-performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/test-performance.sh -------------------------------------------------------------------------------- /test/test-unsigaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/test-unsigaction.c -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/unittests/unit_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/unittests/unit_list.c -------------------------------------------------------------------------------- /test/unittests/unit_maybe_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/unittests/unit_maybe_alloc.c -------------------------------------------------------------------------------- /test/unittests/unit_preallocable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/test/unittests/unit_preallocable.c -------------------------------------------------------------------------------- /testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/README.md -------------------------------------------------------------------------------- /testcases/aflsmart/avi/cbw3.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/cbw3.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/composite.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/composite.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/coralastra2.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/coralastra2.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/drop.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/drop.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/flame.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/flame.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/fp.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/fp.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/fuzzed.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/fuzzed.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/lavafalls.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/lavafalls.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/pod.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/pod.avi -------------------------------------------------------------------------------- /testcases/aflsmart/avi/quetzal.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/avi/quetzal.avi -------------------------------------------------------------------------------- /testcases/aflsmart/elf/bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/bitmap -------------------------------------------------------------------------------- /testcases/aflsmart/elf/bunzip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/bunzip2 -------------------------------------------------------------------------------- /testcases/aflsmart/elf/cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/cat -------------------------------------------------------------------------------- /testcases/aflsmart/elf/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/echo -------------------------------------------------------------------------------- /testcases/aflsmart/elf/elfedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/elfedit -------------------------------------------------------------------------------- /testcases/aflsmart/elf/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testcases/aflsmart/elf/false: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/false -------------------------------------------------------------------------------- /testcases/aflsmart/elf/gcc-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/gcc-5 -------------------------------------------------------------------------------- /testcases/aflsmart/elf/grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/grep -------------------------------------------------------------------------------- /testcases/aflsmart/elf/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/hello -------------------------------------------------------------------------------- /testcases/aflsmart/elf/less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/less -------------------------------------------------------------------------------- /testcases/aflsmart/elf/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/ls -------------------------------------------------------------------------------- /testcases/aflsmart/elf/lsof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/lsof -------------------------------------------------------------------------------- /testcases/aflsmart/elf/mkdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/mkdir -------------------------------------------------------------------------------- /testcases/aflsmart/elf/more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/more -------------------------------------------------------------------------------- /testcases/aflsmart/elf/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/ping -------------------------------------------------------------------------------- /testcases/aflsmart/elf/sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/sed -------------------------------------------------------------------------------- /testcases/aflsmart/elf/sysinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/sysinfo -------------------------------------------------------------------------------- /testcases/aflsmart/elf/true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/true -------------------------------------------------------------------------------- /testcases/aflsmart/elf/uname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/uname -------------------------------------------------------------------------------- /testcases/aflsmart/elf/zsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/elf/zsync -------------------------------------------------------------------------------- /testcases/aflsmart/gif/aquarium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/aquarium.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/bali.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/bali.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/brain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/brain.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/czoch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/czoch.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/flattened_brain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/flattened_brain.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/hershey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/hershey.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/lineup_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/lineup_16.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/mri.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/mri.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/polyfish_lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/polyfish_lines.gif -------------------------------------------------------------------------------- /testcases/aflsmart/gif/prototein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/gif/prototein.gif -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/testimgari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/testimgari.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/testimgint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/testimgint.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/testorig.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/testorig12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/testorig12.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/w3c_home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/w3c_home.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/w3c_home_256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/w3c_home_256.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg/w3c_home_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg/w3c_home_gray.jpg -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file1.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file2.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file2.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file3.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file3.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file4.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file4.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file5.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file5.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file6.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file6.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file8.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file8.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/jpeg2000/file9.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/jpeg2000/file9.jp2 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/airportsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/airportsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/edensmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/edensmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/gypsysmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/gypsysmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/heretostaysmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/heretostaysmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/lordsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/lordsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/mpthreetest.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/mpthreetest.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/olddogsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/olddogsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/onlyalonelygirlsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/onlyalonelygirlsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/onlyroadsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/onlyroadsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/paradiserowsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/paradiserowsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/perfectloverssmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/perfectloverssmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/mp3/ticketsmall.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/mp3/ticketsmall.mp3 -------------------------------------------------------------------------------- /testcases/aflsmart/pcap/Apple_IP-over-IEEE_1394_Packet.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pcap/Apple_IP-over-IEEE_1394_Packet.pcap -------------------------------------------------------------------------------- /testcases/aflsmart/pcap/NTLM-wenchao.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pcap/NTLM-wenchao.pcap -------------------------------------------------------------------------------- /testcases/aflsmart/pcap/bfd-raw-auth-md5.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pcap/bfd-raw-auth-md5.pcap -------------------------------------------------------------------------------- /testcases/aflsmart/pcap/bfd-raw-auth-simple.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pcap/bfd-raw-auth-simple.pcap -------------------------------------------------------------------------------- /testcases/aflsmart/pcap/ipv4frags.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pcap/ipv4frags.pcap -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-1-13-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-1-13-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-1-2-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-1-2-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-1-6-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-1-6-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-1-8-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-1-8-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-4-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-4-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-5-3-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-5-3-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/isartor-6-9-t01-fail-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/isartor-6-9-t01-fail-a.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/pdf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/pdf.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/sample.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/pdf/small.pdf -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn0g01.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn0g02.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn0g04.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn0g08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn0g16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn3p01.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn3p02.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn3p04.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn4a08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn4a16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn6a08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/basn6a16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbbn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbbn0g01.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbbn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbbn0g02.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbbn0g04.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbbn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbbn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbgn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbgn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbrn2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbwn0g16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbwn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftbyn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftp0n0g08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftp0n2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftp0n3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ftp1n3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn0g08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn0g16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn4a08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn4a16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn6a08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/ibasn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/ibasn6a16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbbn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbbn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbgn2c16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbgn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbrn2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbwn0g16.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbwn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftbyn3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftp0n0g08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftp0n2c08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftp0n3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/png/iftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/png/iftp1n3p08.png -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-101-Bass-C2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-101-Bass-C2.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-Bass-Pizz-C2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-Bass-Pizz-C2.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-Choir-Aahs-C4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-Choir-Aahs-C4.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-Harp-C4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-Harp-C4.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-PizzicatoStr-C5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-PizzicatoStr-C5.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-SynVox-C4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-SynVox-C4.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/Roland-JV-2080-Vocal-Oohz-C4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/Roland-JV-2080-Vocal-Oohz-C4.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/low_town_groove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/low_town_groove.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/rhgroove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/rhgroove.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/smooth-o.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/smooth-o.wav -------------------------------------------------------------------------------- /testcases/aflsmart/wav/smooth_sting.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/aflsmart/wav/smooth_sting.wav -------------------------------------------------------------------------------- /testcases/archives/common/ar/small_archive.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/ar/small_archive.a -------------------------------------------------------------------------------- /testcases/archives/common/bzip2/small_archive.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/bzip2/small_archive.bz2 -------------------------------------------------------------------------------- /testcases/archives/common/cab/small_archive.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/cab/small_archive.cab -------------------------------------------------------------------------------- /testcases/archives/common/compress/small_archive.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/compress/small_archive.Z -------------------------------------------------------------------------------- /testcases/archives/common/cpio/small_archive.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/cpio/small_archive.cpio -------------------------------------------------------------------------------- /testcases/archives/common/gzip/small_archive.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/gzip/small_archive.gz -------------------------------------------------------------------------------- /testcases/archives/common/lzo/small_archive.lzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/lzo/small_archive.lzo -------------------------------------------------------------------------------- /testcases/archives/common/rar/small_archive.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/rar/small_archive.rar -------------------------------------------------------------------------------- /testcases/archives/common/tar/small_archive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/tar/small_archive.tar -------------------------------------------------------------------------------- /testcases/archives/common/xz/small_archive.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/xz/small_archive.xz -------------------------------------------------------------------------------- /testcases/archives/common/zip/small_archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/common/zip/small_archive.zip -------------------------------------------------------------------------------- /testcases/archives/exotic/arj/small_archive.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/arj/small_archive.arj -------------------------------------------------------------------------------- /testcases/archives/exotic/lha/small_archive.lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/lha/small_archive.lha -------------------------------------------------------------------------------- /testcases/archives/exotic/lrzip/small_archive.lrz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/lrzip/small_archive.lrz -------------------------------------------------------------------------------- /testcases/archives/exotic/lzip/small_archive.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/lzip/small_archive.lz -------------------------------------------------------------------------------- /testcases/archives/exotic/lzma/small_archive.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/lzma/small_archive.lzma -------------------------------------------------------------------------------- /testcases/archives/exotic/rzip/small_archive.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/rzip/small_archive.rz -------------------------------------------------------------------------------- /testcases/archives/exotic/zoo/small_archive.zoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/archives/exotic/zoo/small_archive.zoo -------------------------------------------------------------------------------- /testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/png/not_kitty_alpha.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/png/not_kitty_gamma.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /testcases/multimedia/h264/small_movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/multimedia/h264/small_movie.mp4 -------------------------------------------------------------------------------- /testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /testcases/others/pcap/small_capture.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/others/pcap/small_capture.pcap -------------------------------------------------------------------------------- /testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/testcases/others/sql/simple_queries.sql -------------------------------------------------------------------------------- /testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- 1 | include/types.h -------------------------------------------------------------------------------- /unicorn_mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/README.md -------------------------------------------------------------------------------- /unicorn_mode/build_unicorn_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/build_unicorn_support.sh -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/template_test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/template_test_harness.py -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/unicorn_dumper_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/unicorn_dumper_gdb.py -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/unicorn_dumper_ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/unicorn_dumper_ida.py -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/unicorn_dumper_lldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/unicorn_dumper_lldb.py -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/unicorn_dumper_pwndbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/unicorn_dumper_pwndbg.py -------------------------------------------------------------------------------- /unicorn_mode/helper_scripts/unicorn_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/helper_scripts/unicorn_loader.py -------------------------------------------------------------------------------- /unicorn_mode/samples/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/.gitignore -------------------------------------------------------------------------------- /unicorn_mode/samples/c/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/COMPILE.md -------------------------------------------------------------------------------- /unicorn_mode/samples/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/Makefile -------------------------------------------------------------------------------- /unicorn_mode/samples/c/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/harness.c -------------------------------------------------------------------------------- /unicorn_mode/samples/c/persistent_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/persistent_target.c -------------------------------------------------------------------------------- /unicorn_mode/samples/c/persistent_target_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/persistent_target_x86_64 -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/sample_all.sh -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/c/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/c/simple_target_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/c/simple_target_x86_64 -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/COMPILE.md -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/compcov_target.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/compcov_target.bin -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/compcov_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/compcov_target.c -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/compcov_target.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/compcov_target.elf -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/compcov_test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/compcov_test_harness.py -------------------------------------------------------------------------------- /unicorn_mode/samples/compcov_x64/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/compcov_x64/sample_inputs/sample1.bin -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/.gitignore -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/COMPILE.md -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/Makefile -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/harness.c -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/persistent_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/persistent_target.c -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/persistent_target_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/persistent_target_x86_64 -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/sample_all.sh -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/simple_target_noncrashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/simple_target_noncrashing.c -------------------------------------------------------------------------------- /unicorn_mode/samples/persistent/simple_target_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/persistent/simple_target_x86_64 -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/COMPILE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/simple/COMPILE.md -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/sample_inputs/sample1.bin: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/sample_inputs/sample2.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/sample_inputs/sample3.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/sample_inputs/sample4.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/sample_inputs/sample5.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/simple_target.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/simple/simple_target.bin -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/simple_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/simple/simple_target.c -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/simple_test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/simple/simple_test_harness.py -------------------------------------------------------------------------------- /unicorn_mode/samples/simple/simple_test_harness_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengchen-cc/AFLplusplusSmart/HEAD/unicorn_mode/samples/simple/simple_test_harness_alt.py --------------------------------------------------------------------------------