├── AFL_replace_mutate ├── .gdb_history ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── afl-analyze.c ├── afl-as.c ├── afl-as.h ├── afl-cmin ├── afl-fuzz.c ├── afl-gcc.c ├── afl-gotcpu.c ├── afl-plot ├── afl-showmap ├── afl-showmap.c ├── afl-tmin.c ├── afl-whatsup ├── alloc-inl.h ├── config.h ├── debug.h ├── dictionaries │ ├── README.dictionaries │ ├── gif.dict │ ├── html_tags.dict │ ├── jpeg.dict │ ├── js.dict │ ├── json.dict │ ├── pdf.dict │ ├── png.dict │ ├── sql.dict │ ├── tiff.dict │ ├── webp.dict │ └── xml.dict ├── docs │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── QuickStartGuide.txt │ ├── README │ ├── env_variables.txt │ ├── historical_notes.txt │ ├── life_pro_tips.txt │ ├── notes_for_asan.txt │ ├── parallel_fuzzing.txt │ ├── perf_tips.txt │ ├── sister_projects.txt │ ├── status_screen.txt │ ├── technical_details.txt │ ├── visualization │ │ └── afl_gzip.png │ └── vuln_samples │ │ ├── bash-cmd-exec.var │ │ ├── bash-uninit-mem.var │ │ ├── ffmpeg-h264-bad-ptr-800m.mp4 │ │ ├── ffmpeg-h264-bad-read.mp4 │ │ ├── ffmpeg-h264-call-stack-overflow.mp4 │ │ ├── file-fpu-exception.elf │ │ ├── firefox-bmp-leak.bmp │ │ ├── firefox-chrome-leak.jpg │ │ ├── firefox-gif-leak.gif │ │ ├── firefox-gif-leak2.gif │ │ ├── jxrlib-crash.jxr │ │ ├── jxrlib-crash2.jxr │ │ ├── jxrlib-crash3.jxr │ │ ├── jxrlib-crash4.jxr │ │ ├── lesspipe-cpio-bad-write.cpio │ │ ├── libjpeg-sos-leak.jpg │ │ ├── libjpeg-turbo-dht-leak.jpg │ │ ├── libtiff-bad-write.tif │ │ ├── libtiff-uninit-mem.tif │ │ ├── libtiff-uninit-mem2.tif │ │ ├── libtiff-uninit-mem3.tif │ │ ├── libtiff-uninit-mem4.tif │ │ ├── libxml2-bad-read.xml │ │ ├── msie-dht-leak.jpg │ │ ├── msie-jxr-mem-leak.jxr │ │ ├── msie-png-mem-leak.png │ │ ├── msie-tiff-mem-leak.tif │ │ ├── msie-zlib-dos.png │ │ ├── openssl-null-ptr.der │ │ ├── openssl-null-ptr2.der │ │ ├── photoshop-mem-leak.jpg │ │ ├── sqlite-bad-free.sql │ │ ├── sqlite-bad-ptr.sql │ │ ├── sqlite-bad-ptr2.sql │ │ ├── sqlite-bad-ptr3.sql │ │ ├── sqlite-heap-overflow.sql │ │ ├── sqlite-heap-overwrite.sql │ │ ├── sqlite-negative-memset.sql │ │ ├── sqlite-null-ptr1.sql │ │ ├── sqlite-null-ptr10.sql │ │ ├── sqlite-null-ptr11.sql │ │ ├── sqlite-null-ptr12.sql │ │ ├── sqlite-null-ptr13.sql │ │ ├── sqlite-null-ptr14.sql │ │ ├── sqlite-null-ptr15.sql │ │ ├── sqlite-null-ptr2.sql │ │ ├── sqlite-null-ptr3.sql │ │ ├── sqlite-null-ptr4.sql │ │ ├── sqlite-null-ptr5.sql │ │ ├── sqlite-null-ptr6.sql │ │ ├── sqlite-null-ptr7.sql │ │ ├── sqlite-null-ptr8.sql │ │ ├── sqlite-null-ptr9.sql │ │ ├── sqlite-oob-read.sql │ │ ├── sqlite-oob-write.sql │ │ ├── sqlite-stack-buf-overflow.sql │ │ ├── sqlite-stack-exhaustion.sql │ │ ├── sqlite-unint-mem.sql │ │ ├── sqlite-use-after-free.sql │ │ ├── strings-bfd-badptr.elf │ │ ├── strings-bfd-badptr2.elf │ │ ├── strings-stack-overflow │ │ ├── strings-unchecked-ctr.elf │ │ ├── tcpdump-arp-crash.pcap │ │ ├── tcpdump-ppp-crash.pcap │ │ ├── unrtf-arbitrary-read.rtf │ │ └── unzip-t-mem-corruption.zip ├── experimental │ ├── README.experiments │ ├── argv_fuzzing │ │ └── argv-fuzz-inl.h │ ├── asan_cgroups │ │ └── limit_memory.sh │ ├── bash_shellshock │ │ └── shellshock-fuzz.diff │ ├── canvas_harness │ │ └── canvas_harness.html │ ├── clang_asm_normalize │ │ └── as │ ├── crash_triage │ │ └── triage_crashes.sh │ ├── distributed_fuzzing │ │ └── sync_script.sh │ ├── libpng_no_checksum │ │ └── libpng-nocrc.patch │ ├── persistent_demo │ │ └── persistent_demo.c │ └── post_library │ │ ├── post_library.so.c │ │ └── post_library_png.so.c ├── hash.h ├── libdislocator │ ├── Makefile │ ├── README.dislocator │ └── libdislocator.so.c ├── libtokencap │ ├── Makefile │ ├── README.tokencap │ └── libtokencap.so.c ├── llvm_mode │ ├── Makefile │ ├── README.llvm │ ├── afl-clang-fast.c │ ├── afl-llvm-pass.so.cc │ └── afl-llvm-rt.o.c ├── peda-session-ruby.txt ├── qemu_mode │ ├── README.qemu │ ├── build_qemu_support.sh │ └── patches │ │ ├── afl-qemu-cpu-inl.h │ │ ├── configure.diff │ │ ├── cpu-exec.diff │ │ ├── elfload.diff │ │ ├── memfd.diff │ │ └── syscall.diff ├── test-instr.c ├── test-libfuzzer-target.c ├── testcases │ ├── README.testcases │ ├── archives │ │ ├── common │ │ │ ├── ar │ │ │ │ └── small_archive.a │ │ │ ├── bzip2 │ │ │ │ └── small_archive.bz2 │ │ │ ├── cab │ │ │ │ └── small_archive.cab │ │ │ ├── compress │ │ │ │ └── small_archive.Z │ │ │ ├── cpio │ │ │ │ └── small_archive.cpio │ │ │ ├── gzip │ │ │ │ └── small_archive.gz │ │ │ ├── lzo │ │ │ │ └── small_archive.lzo │ │ │ ├── rar │ │ │ │ └── small_archive.rar │ │ │ ├── tar │ │ │ │ └── small_archive.tar │ │ │ ├── xz │ │ │ │ └── small_archive.xz │ │ │ └── zip │ │ │ │ └── small_archive.zip │ │ └── exotic │ │ │ ├── arj │ │ │ └── small_archive.arj │ │ │ ├── lha │ │ │ └── small_archive.lha │ │ │ ├── lrzip │ │ │ └── small_archive.lrz │ │ │ ├── lzip │ │ │ └── small_archive.lz │ │ │ ├── lzma │ │ │ └── small_archive.lzma │ │ │ ├── rzip │ │ │ └── small_archive.rz │ │ │ └── zoo │ │ │ └── small_archive.zoo │ ├── images │ │ ├── bmp │ │ │ └── not_kitty.bmp │ │ ├── gif │ │ │ └── not_kitty.gif │ │ ├── ico │ │ │ └── not_kitty.ico │ │ ├── jp2 │ │ │ └── not_kitty.jp2 │ │ ├── jpeg │ │ │ └── not_kitty.jpg │ │ ├── jxr │ │ │ └── not_kitty.jxr │ │ ├── png │ │ │ ├── not_kitty.png │ │ │ ├── not_kitty_alpha.png │ │ │ ├── not_kitty_gamma.png │ │ │ └── not_kitty_icc.png │ │ ├── tiff │ │ │ └── not_kitty.tiff │ │ └── webp │ │ │ └── not_kitty.webp │ ├── multimedia │ │ └── h264 │ │ │ └── small_movie.mp4 │ └── others │ │ ├── elf │ │ └── small_exec.elf │ │ ├── js │ │ └── small_script.js │ │ ├── pcap │ │ └── small_capture.pcap │ │ ├── pdf │ │ └── small.pdf │ │ ├── rtf │ │ └── small_document.rtf │ │ ├── sql │ │ └── simple_queries.sql │ │ ├── text │ │ └── hello_world.txt │ │ └── xml │ │ └── small_document.xml └── types.h ├── Config.py ├── Generator.py ├── LICENSE ├── Makefile ├── README.md ├── Utils.py ├── data ├── basic_type_map ├── datatype ├── destructor ├── extra_flex_rule ├── extra_flex_rule_c ├── extra_flex_rule_js ├── extra_flex_rule_lua ├── extra_flex_rule_php ├── extra_flex_rule_solidity ├── extra_flex_rule_test └── ff ├── grammar ├── c_grammar │ ├── ff │ ├── grammar │ ├── replace.py │ ├── replace.sh │ ├── semantic.json │ └── to_replace ├── js_grammar │ ├── ff │ ├── grammar │ ├── replace.py │ ├── replace.sh │ ├── semantic.json │ └── to_replace ├── php_grammar │ ├── ff │ ├── grammar │ ├── replace.py │ ├── replace.sh │ ├── semantic.json │ └── to_replace ├── solidity_grammar │ ├── builtin │ │ └── block │ ├── ff │ ├── grammar │ ├── replace.py │ ├── replace.sh │ ├── semantic.json │ └── to_replace └── test_grammar │ ├── ff │ ├── grammar │ ├── replace.py │ ├── replace.sh │ ├── semantic.json │ └── to_replace └── template ├── ast_header_template.h ├── ast_src_template.cpp ├── define_header_template.h ├── mutate_header_template.h ├── mutate_src_template.cpp ├── parser_typedef_template.h ├── parser_utils_header_template.h ├── typesystem_header_template.h ├── typesystem_src_template.cpp ├── utils_header_template.h ├── utils_src_template.cpp ├── var_definition_header_template.h └── var_definition_src_template.cpp /AFL_replace_mutate/.gdb_history: -------------------------------------------------------------------------------- 1 | attach 23929 2 | set follow-fork-mode child 3 | c 4 | q 5 | -------------------------------------------------------------------------------- /AFL_replace_mutate/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/CONTRIBUTING.md -------------------------------------------------------------------------------- /AFL_replace_mutate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/LICENSE -------------------------------------------------------------------------------- /AFL_replace_mutate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/Makefile -------------------------------------------------------------------------------- /AFL_replace_mutate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/README.md -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-analyze.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-as.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-as.h -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-cmin -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-fuzz.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-gcc.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-gotcpu.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-plot -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-showmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-showmap -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-showmap.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-tmin.c -------------------------------------------------------------------------------- /AFL_replace_mutate/afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/afl-whatsup -------------------------------------------------------------------------------- /AFL_replace_mutate/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/alloc-inl.h -------------------------------------------------------------------------------- /AFL_replace_mutate/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/config.h -------------------------------------------------------------------------------- /AFL_replace_mutate/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/debug.h -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/README.dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/README.dictionaries -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/gif.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/js.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/json.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/pdf.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/png.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/sql.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/tiff.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/webp.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/dictionaries/xml.dict -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/COPYING -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/ChangeLog -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/INSTALL -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/QuickStartGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/QuickStartGuide.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/env_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/env_variables.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/historical_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/historical_notes.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/life_pro_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/life_pro_tips.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/notes_for_asan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/notes_for_asan.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/parallel_fuzzing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/parallel_fuzzing.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/perf_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/perf_tips.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/sister_projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/sister_projects.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/status_screen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/status_screen.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/technical_details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/technical_details.txt -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/visualization/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/visualization/afl_gzip.png -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/bash-cmd-exec.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/bash-cmd-exec.var -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/bash-uninit-mem.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/bash-uninit-mem.var -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4 -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-bad-read.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-bad-read.mp4 -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4 -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/file-fpu-exception.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/file-fpu-exception.elf -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/firefox-bmp-leak.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/firefox-bmp-leak.bmp -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/firefox-chrome-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/firefox-chrome-leak.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/firefox-gif-leak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/firefox-gif-leak.gif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/firefox-gif-leak2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/firefox-gif-leak2.gif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/jxrlib-crash.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/jxrlib-crash.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/jxrlib-crash2.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/jxrlib-crash2.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/jxrlib-crash3.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/jxrlib-crash3.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/jxrlib-crash4.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/jxrlib-crash4.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/lesspipe-cpio-bad-write.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/lesspipe-cpio-bad-write.cpio -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libjpeg-sos-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libjpeg-sos-leak.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libjpeg-turbo-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libjpeg-turbo-dht-leak.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libtiff-bad-write.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libtiff-bad-write.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem2.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem3.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libtiff-uninit-mem4.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/libxml2-bad-read.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/libxml2-bad-read.xml -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/msie-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/msie-dht-leak.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/msie-jxr-mem-leak.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/msie-jxr-mem-leak.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/msie-png-mem-leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/msie-png-mem-leak.png -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/msie-tiff-mem-leak.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/msie-tiff-mem-leak.tif -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/msie-zlib-dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/msie-zlib-dos.png -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/openssl-null-ptr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/openssl-null-ptr.der -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/openssl-null-ptr2.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/openssl-null-ptr2.der -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/photoshop-mem-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/photoshop-mem-leak.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-bad-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-bad-free.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr2.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-bad-ptr3.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-heap-overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-heap-overflow.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-heap-overwrite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-heap-overwrite.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-negative-memset.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-negative-memset.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr1.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr10.sql: -------------------------------------------------------------------------------- 1 | SELECT fts3_tokenizer(@0()); 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr11.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr12.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr13.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr14.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr15.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr2.sql: -------------------------------------------------------------------------------- 1 | DETACH(select group_concat(q)); 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr3.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr4.sql: -------------------------------------------------------------------------------- 1 | select n()AND+#00; 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr5.sql: -------------------------------------------------------------------------------- 1 | select e.*,0 from(s,(L))e; 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr6.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr7.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t USING fts4(tokenize=); 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr8.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE p(a UNIQUE,PRIMARY KEY('a'))WITHOUT rowid; 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-null-ptr9.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-oob-read.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-oob-read.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-oob-write.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-oob-write.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-stack-buf-overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-stack-buf-overflow.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-stack-exhaustion.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t0 USING fts4(content=t0); 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-unint-mem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-unint-mem.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/sqlite-use-after-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/sqlite-use-after-free.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/strings-bfd-badptr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/strings-bfd-badptr.elf -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/strings-bfd-badptr2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/strings-bfd-badptr2.elf -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/strings-stack-overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/strings-stack-overflow -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/strings-unchecked-ctr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/strings-unchecked-ctr.elf -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/tcpdump-arp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/tcpdump-arp-crash.pcap -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/tcpdump-ppp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/tcpdump-ppp-crash.pcap -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/unrtf-arbitrary-read.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/unrtf-arbitrary-read.rtf -------------------------------------------------------------------------------- /AFL_replace_mutate/docs/vuln_samples/unzip-t-mem-corruption.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/docs/vuln_samples/unzip-t-mem-corruption.zip -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/README.experiments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/README.experiments -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/argv_fuzzing/argv-fuzz-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/argv_fuzzing/argv-fuzz-inl.h -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/asan_cgroups/limit_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/asan_cgroups/limit_memory.sh -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/bash_shellshock/shellshock-fuzz.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/bash_shellshock/shellshock-fuzz.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/canvas_harness/canvas_harness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/canvas_harness/canvas_harness.html -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/clang_asm_normalize/as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/clang_asm_normalize/as -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/crash_triage/triage_crashes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/crash_triage/triage_crashes.sh -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/distributed_fuzzing/sync_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/distributed_fuzzing/sync_script.sh -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/libpng_no_checksum/libpng-nocrc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/libpng_no_checksum/libpng-nocrc.patch -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/persistent_demo/persistent_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/persistent_demo/persistent_demo.c -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/post_library/post_library.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/post_library/post_library.so.c -------------------------------------------------------------------------------- /AFL_replace_mutate/experimental/post_library/post_library_png.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/experimental/post_library/post_library_png.so.c -------------------------------------------------------------------------------- /AFL_replace_mutate/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/hash.h -------------------------------------------------------------------------------- /AFL_replace_mutate/libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libdislocator/Makefile -------------------------------------------------------------------------------- /AFL_replace_mutate/libdislocator/README.dislocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libdislocator/README.dislocator -------------------------------------------------------------------------------- /AFL_replace_mutate/libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /AFL_replace_mutate/libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libtokencap/Makefile -------------------------------------------------------------------------------- /AFL_replace_mutate/libtokencap/README.tokencap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libtokencap/README.tokencap -------------------------------------------------------------------------------- /AFL_replace_mutate/libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /AFL_replace_mutate/llvm_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/llvm_mode/Makefile -------------------------------------------------------------------------------- /AFL_replace_mutate/llvm_mode/README.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/llvm_mode/README.llvm -------------------------------------------------------------------------------- /AFL_replace_mutate/llvm_mode/afl-clang-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/llvm_mode/afl-clang-fast.c -------------------------------------------------------------------------------- /AFL_replace_mutate/llvm_mode/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/llvm_mode/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /AFL_replace_mutate/llvm_mode/afl-llvm-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/llvm_mode/afl-llvm-rt.o.c -------------------------------------------------------------------------------- /AFL_replace_mutate/peda-session-ruby.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/README.qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/README.qemu -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/afl-qemu-cpu-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/afl-qemu-cpu-inl.h -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/configure.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/cpu-exec.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/cpu-exec.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/elfload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/elfload.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/memfd.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/memfd.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/qemu_mode/patches/syscall.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/qemu_mode/patches/syscall.diff -------------------------------------------------------------------------------- /AFL_replace_mutate/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/test-instr.c -------------------------------------------------------------------------------- /AFL_replace_mutate/test-libfuzzer-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/test-libfuzzer-target.c -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/README.testcases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/README.testcases -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/ar/small_archive.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/ar/small_archive.a -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/bzip2/small_archive.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/bzip2/small_archive.bz2 -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/cab/small_archive.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/cab/small_archive.cab -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/compress/small_archive.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/compress/small_archive.Z -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/cpio/small_archive.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/cpio/small_archive.cpio -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/gzip/small_archive.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/gzip/small_archive.gz -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/lzo/small_archive.lzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/lzo/small_archive.lzo -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/rar/small_archive.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/rar/small_archive.rar -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/tar/small_archive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/tar/small_archive.tar -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/xz/small_archive.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/xz/small_archive.xz -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/common/zip/small_archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/common/zip/small_archive.zip -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/arj/small_archive.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/arj/small_archive.arj -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/lha/small_archive.lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/lha/small_archive.lha -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/lrzip/small_archive.lrz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/lrzip/small_archive.lrz -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/lzip/small_archive.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/lzip/small_archive.lz -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/lzma/small_archive.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/lzma/small_archive.lzma -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/rzip/small_archive.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/rzip/small_archive.rz -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/archives/exotic/zoo/small_archive.zoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/archives/exotic/zoo/small_archive.zoo -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/png/not_kitty_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/png/not_kitty_alpha.png -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/png/not_kitty_gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/png/not_kitty_gamma.png -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/multimedia/h264/small_movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/multimedia/h264/small_movie.mp4 -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/pcap/small_capture.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/others/pcap/small_capture.pcap -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/testcases/others/sql/simple_queries.sql -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /AFL_replace_mutate/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/AFL_replace_mutate/types.h -------------------------------------------------------------------------------- /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/Config.py -------------------------------------------------------------------------------- /Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/Generator.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/README.md -------------------------------------------------------------------------------- /Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/Utils.py -------------------------------------------------------------------------------- /data/basic_type_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/basic_type_map -------------------------------------------------------------------------------- /data/datatype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/datatype -------------------------------------------------------------------------------- /data/destructor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/destructor -------------------------------------------------------------------------------- /data/extra_flex_rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule -------------------------------------------------------------------------------- /data/extra_flex_rule_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_c -------------------------------------------------------------------------------- /data/extra_flex_rule_js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_js -------------------------------------------------------------------------------- /data/extra_flex_rule_lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_lua -------------------------------------------------------------------------------- /data/extra_flex_rule_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_php -------------------------------------------------------------------------------- /data/extra_flex_rule_solidity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_solidity -------------------------------------------------------------------------------- /data/extra_flex_rule_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/extra_flex_rule_test -------------------------------------------------------------------------------- /data/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/data/ff -------------------------------------------------------------------------------- /grammar/c_grammar/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/ff -------------------------------------------------------------------------------- /grammar/c_grammar/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/grammar -------------------------------------------------------------------------------- /grammar/c_grammar/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/replace.py -------------------------------------------------------------------------------- /grammar/c_grammar/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/replace.sh -------------------------------------------------------------------------------- /grammar/c_grammar/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/semantic.json -------------------------------------------------------------------------------- /grammar/c_grammar/to_replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/c_grammar/to_replace -------------------------------------------------------------------------------- /grammar/js_grammar/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/ff -------------------------------------------------------------------------------- /grammar/js_grammar/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/grammar -------------------------------------------------------------------------------- /grammar/js_grammar/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/replace.py -------------------------------------------------------------------------------- /grammar/js_grammar/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/replace.sh -------------------------------------------------------------------------------- /grammar/js_grammar/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/semantic.json -------------------------------------------------------------------------------- /grammar/js_grammar/to_replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/js_grammar/to_replace -------------------------------------------------------------------------------- /grammar/php_grammar/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/ff -------------------------------------------------------------------------------- /grammar/php_grammar/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/grammar -------------------------------------------------------------------------------- /grammar/php_grammar/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/replace.py -------------------------------------------------------------------------------- /grammar/php_grammar/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/replace.sh -------------------------------------------------------------------------------- /grammar/php_grammar/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/semantic.json -------------------------------------------------------------------------------- /grammar/php_grammar/to_replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/php_grammar/to_replace -------------------------------------------------------------------------------- /grammar/solidity_grammar/builtin/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/builtin/block -------------------------------------------------------------------------------- /grammar/solidity_grammar/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/ff -------------------------------------------------------------------------------- /grammar/solidity_grammar/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/grammar -------------------------------------------------------------------------------- /grammar/solidity_grammar/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/replace.py -------------------------------------------------------------------------------- /grammar/solidity_grammar/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/replace.sh -------------------------------------------------------------------------------- /grammar/solidity_grammar/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/semantic.json -------------------------------------------------------------------------------- /grammar/solidity_grammar/to_replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/solidity_grammar/to_replace -------------------------------------------------------------------------------- /grammar/test_grammar/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/ff -------------------------------------------------------------------------------- /grammar/test_grammar/grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/grammar -------------------------------------------------------------------------------- /grammar/test_grammar/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/replace.py -------------------------------------------------------------------------------- /grammar/test_grammar/replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/replace.sh -------------------------------------------------------------------------------- /grammar/test_grammar/semantic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/semantic.json -------------------------------------------------------------------------------- /grammar/test_grammar/to_replace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/grammar/test_grammar/to_replace -------------------------------------------------------------------------------- /template/ast_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/ast_header_template.h -------------------------------------------------------------------------------- /template/ast_src_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/ast_src_template.cpp -------------------------------------------------------------------------------- /template/define_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/define_header_template.h -------------------------------------------------------------------------------- /template/mutate_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/mutate_header_template.h -------------------------------------------------------------------------------- /template/mutate_src_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/mutate_src_template.cpp -------------------------------------------------------------------------------- /template/parser_typedef_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/parser_typedef_template.h -------------------------------------------------------------------------------- /template/parser_utils_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/parser_utils_header_template.h -------------------------------------------------------------------------------- /template/typesystem_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/typesystem_header_template.h -------------------------------------------------------------------------------- /template/typesystem_src_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/typesystem_src_template.cpp -------------------------------------------------------------------------------- /template/utils_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/utils_header_template.h -------------------------------------------------------------------------------- /template/utils_src_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/utils_src_template.cpp -------------------------------------------------------------------------------- /template/var_definition_header_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/var_definition_header_template.h -------------------------------------------------------------------------------- /template/var_definition_src_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s3team/Polyglot/HEAD/template/var_definition_src_template.cpp --------------------------------------------------------------------------------