├── .gitignore ├── Makefile ├── QuickStartGuide.txt ├── 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-showdsf.c ├── afl-showmap.c ├── afl-showmax.c ├── afl-tmin.c ├── afl-whatsup ├── afl_driver.cpp ├── alloc-inl.h ├── config.h ├── debug.h ├── demo ├── demo-manual.c ├── demo.c └── seeds │ └── zerozero.txt ├── 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 ├── diff_to_lines.py ├── hash.h ├── img ├── FuzzFactory-VideoThumbnail-2.png ├── FuzzFactory-VideoThumbnail.png ├── eval_cmp-mem.png ├── logo_big.png └── logo_small.png ├── include ├── afl_valid.h ├── reducers.h └── waypoints.h ├── llvm_mode ├── LICENSE ├── Makefile ├── README.llvm ├── afl-catch-dlclose.so.c ├── afl-clang-fast.c ├── afl-llvm-pass.so.cc ├── afl-llvm-rt.o.c ├── fuzzfactory.hpp ├── waypoints-cmp-pass.cc ├── waypoints-cmp-rt.c ├── waypoints-diff-pass.cc ├── waypoints-diff-rt.c ├── waypoints-mem-pass.cc ├── waypoints-mem-rt.c ├── waypoints-perf-pass.cc ├── waypoints-perf-rt.c ├── waypoints-slow-pass.cc ├── waypoints-slow-rt.c ├── waypoints-valid-pass.cc └── waypoints-valid-rt.c ├── reducers.c ├── state.txt ├── test-instr.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/Makefile -------------------------------------------------------------------------------- /QuickStartGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/QuickStartGuide.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/README.md -------------------------------------------------------------------------------- /afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-analyze.c -------------------------------------------------------------------------------- /afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-as.c -------------------------------------------------------------------------------- /afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-as.h -------------------------------------------------------------------------------- /afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-cmin -------------------------------------------------------------------------------- /afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-fuzz.c -------------------------------------------------------------------------------- /afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-gcc.c -------------------------------------------------------------------------------- /afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-gotcpu.c -------------------------------------------------------------------------------- /afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-plot -------------------------------------------------------------------------------- /afl-showdsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-showdsf.c -------------------------------------------------------------------------------- /afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-showmap.c -------------------------------------------------------------------------------- /afl-showmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-showmax.c -------------------------------------------------------------------------------- /afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-tmin.c -------------------------------------------------------------------------------- /afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl-whatsup -------------------------------------------------------------------------------- /afl_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/afl_driver.cpp -------------------------------------------------------------------------------- /alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/alloc-inl.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/config.h -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/debug.h -------------------------------------------------------------------------------- /demo/demo-manual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/demo/demo-manual.c -------------------------------------------------------------------------------- /demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/demo/demo.c -------------------------------------------------------------------------------- /demo/seeds/zerozero.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /dictionaries/README.dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/README.dictionaries -------------------------------------------------------------------------------- /dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/gif.dict -------------------------------------------------------------------------------- /dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/js.dict -------------------------------------------------------------------------------- /dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/json.dict -------------------------------------------------------------------------------- /dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/pdf.dict -------------------------------------------------------------------------------- /dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/png.dict -------------------------------------------------------------------------------- /dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/sql.dict -------------------------------------------------------------------------------- /dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/tiff.dict -------------------------------------------------------------------------------- /dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/webp.dict -------------------------------------------------------------------------------- /dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/dictionaries/xml.dict -------------------------------------------------------------------------------- /diff_to_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/diff_to_lines.py -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/hash.h -------------------------------------------------------------------------------- /img/FuzzFactory-VideoThumbnail-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/img/FuzzFactory-VideoThumbnail-2.png -------------------------------------------------------------------------------- /img/FuzzFactory-VideoThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/img/FuzzFactory-VideoThumbnail.png -------------------------------------------------------------------------------- /img/eval_cmp-mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/img/eval_cmp-mem.png -------------------------------------------------------------------------------- /img/logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/img/logo_big.png -------------------------------------------------------------------------------- /img/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/img/logo_small.png -------------------------------------------------------------------------------- /include/afl_valid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/include/afl_valid.h -------------------------------------------------------------------------------- /include/reducers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/include/reducers.h -------------------------------------------------------------------------------- /include/waypoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/include/waypoints.h -------------------------------------------------------------------------------- /llvm_mode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/LICENSE -------------------------------------------------------------------------------- /llvm_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/Makefile -------------------------------------------------------------------------------- /llvm_mode/README.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/README.llvm -------------------------------------------------------------------------------- /llvm_mode/afl-catch-dlclose.so.c: -------------------------------------------------------------------------------- 1 | int dlclose(void *handle) { return 0; } 2 | -------------------------------------------------------------------------------- /llvm_mode/afl-clang-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/afl-clang-fast.c -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /llvm_mode/afl-llvm-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/afl-llvm-rt.o.c -------------------------------------------------------------------------------- /llvm_mode/fuzzfactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/fuzzfactory.hpp -------------------------------------------------------------------------------- /llvm_mode/waypoints-cmp-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-cmp-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-cmp-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-cmp-rt.c -------------------------------------------------------------------------------- /llvm_mode/waypoints-diff-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-diff-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-diff-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-diff-rt.c -------------------------------------------------------------------------------- /llvm_mode/waypoints-mem-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-mem-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-mem-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-mem-rt.c -------------------------------------------------------------------------------- /llvm_mode/waypoints-perf-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-perf-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-perf-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-perf-rt.c -------------------------------------------------------------------------------- /llvm_mode/waypoints-slow-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-slow-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-slow-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-slow-rt.c -------------------------------------------------------------------------------- /llvm_mode/waypoints-valid-pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-valid-pass.cc -------------------------------------------------------------------------------- /llvm_mode/waypoints-valid-rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/llvm_mode/waypoints-valid-rt.c -------------------------------------------------------------------------------- /reducers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/reducers.c -------------------------------------------------------------------------------- /state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/state.txt -------------------------------------------------------------------------------- /test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/test-instr.c -------------------------------------------------------------------------------- /testcases/README.testcases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/README.testcases -------------------------------------------------------------------------------- /testcases/archives/common/ar/small_archive.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/ar/small_archive.a -------------------------------------------------------------------------------- /testcases/archives/common/bzip2/small_archive.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/bzip2/small_archive.bz2 -------------------------------------------------------------------------------- /testcases/archives/common/cab/small_archive.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/cab/small_archive.cab -------------------------------------------------------------------------------- /testcases/archives/common/compress/small_archive.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/compress/small_archive.Z -------------------------------------------------------------------------------- /testcases/archives/common/cpio/small_archive.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/cpio/small_archive.cpio -------------------------------------------------------------------------------- /testcases/archives/common/gzip/small_archive.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/gzip/small_archive.gz -------------------------------------------------------------------------------- /testcases/archives/common/lzo/small_archive.lzo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/lzo/small_archive.lzo -------------------------------------------------------------------------------- /testcases/archives/common/rar/small_archive.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/rar/small_archive.rar -------------------------------------------------------------------------------- /testcases/archives/common/tar/small_archive.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/tar/small_archive.tar -------------------------------------------------------------------------------- /testcases/archives/common/xz/small_archive.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/xz/small_archive.xz -------------------------------------------------------------------------------- /testcases/archives/common/zip/small_archive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/common/zip/small_archive.zip -------------------------------------------------------------------------------- /testcases/archives/exotic/arj/small_archive.arj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/arj/small_archive.arj -------------------------------------------------------------------------------- /testcases/archives/exotic/lha/small_archive.lha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/lha/small_archive.lha -------------------------------------------------------------------------------- /testcases/archives/exotic/lrzip/small_archive.lrz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/lrzip/small_archive.lrz -------------------------------------------------------------------------------- /testcases/archives/exotic/lzip/small_archive.lz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/lzip/small_archive.lz -------------------------------------------------------------------------------- /testcases/archives/exotic/lzma/small_archive.lzma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/lzma/small_archive.lzma -------------------------------------------------------------------------------- /testcases/archives/exotic/rzip/small_archive.rz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/rzip/small_archive.rz -------------------------------------------------------------------------------- /testcases/archives/exotic/zoo/small_archive.zoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/archives/exotic/zoo/small_archive.zoo -------------------------------------------------------------------------------- /testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/png/not_kitty_alpha.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/png/not_kitty_gamma.png -------------------------------------------------------------------------------- /testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /testcases/multimedia/h264/small_movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/multimedia/h264/small_movie.mp4 -------------------------------------------------------------------------------- /testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/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/rohanpadhye/FuzzFactory/HEAD/testcases/others/pcap/small_capture.pcap -------------------------------------------------------------------------------- /testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanpadhye/FuzzFactory/HEAD/types.h --------------------------------------------------------------------------------