├── LICENSE ├── LLVM ├── Makefile ├── build.sh ├── scripts │ ├── install-asan-files.sh │ └── install-msan-files.sh └── src │ ├── compiler-rt-files │ ├── asan_allocator.cc │ ├── asan_allocator.h │ ├── asan_fake_stack.cc │ ├── asan_flags.inc │ ├── asan_globals.cc │ ├── asan_interceptors_memintrinsics.h │ ├── asan_interface.inc │ ├── asan_interface_internal.h │ ├── asan_internal.h │ ├── asan_mapping.h │ ├── asan_options.h │ ├── asan_options_no_function_define.h │ ├── asan_poisoning.cc │ ├── asan_poisoning.h │ ├── asan_rbtree.cc │ ├── asan_rbtree.h │ ├── asan_report.cc │ ├── asan_rtems.cc │ ├── asan_rtl.cc │ ├── asan_shadow_setup.cc │ ├── lib_asan_cmakelists.txt │ ├── lib_msan_cmakelists.txt │ ├── msan.h │ ├── msan_allocator.cc │ ├── msan_interceptors.cc │ ├── msan_linux.cc │ ├── msan_origin.h │ ├── sanitizer_CMakeLists.txt │ ├── sanitizer_allocator_primary64.h │ ├── sanitizer_allocator_secondary.h │ ├── sanitizer_linux_libcdep.cc │ ├── sanitizer_platform_limits_posix.cc │ └── sanitizer_platform_limits_posix.h │ └── llvm-files │ └── AddressSanitizer.cpp ├── README.md ├── afl ├── afl-2.52b │ ├── Makefile │ ├── QuickStartGuide.txt │ ├── README │ ├── afl-analyze.c │ ├── afl-as.c │ ├── afl-as.h │ ├── afl-cmin │ ├── afl-fuzz.c │ ├── afl-gcc.c │ ├── afl-gotcpu.c │ ├── afl-plot │ ├── 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 │ ├── qemu_mode │ │ ├── README.qemu │ │ ├── build_qemu_support.sh │ │ └── patches │ │ │ ├── afl-qemu-cpu-inl.h │ │ │ ├── cpu-exec.diff │ │ │ ├── elfload.diff │ │ │ └── syscall.diff │ ├── 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 └── build-afl.sh ├── etc └── libshrink │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── ctor.cpp │ ├── fix_preinit.py │ ├── libpreload.c │ ├── libstatic.c │ ├── linux_syscall_support.h │ ├── prelink_binary.py │ ├── rpath_wrapper.sh │ ├── shrink.c │ ├── shrink.h │ ├── test.cpp │ └── wrap.sh ├── fuzzan_autosetup.sh └── sample ├── applications ├── README.md ├── build.sh ├── empty-seeds │ ├── audiofile │ │ └── seed │ ├── binutils │ │ └── seed │ ├── c++filt │ │ └── seed │ ├── ffmpeg │ │ └── seed │ ├── file │ │ └── seed │ ├── gif2png │ │ └── seed │ ├── lepton │ │ └── seed │ ├── libarchive │ │ └── seed │ ├── libjpeg │ │ └── seed │ ├── libtiff │ │ └── seed │ ├── nm │ │ └── seed │ ├── objdump │ │ └── seed │ ├── openjpeg │ │ └── seed │ ├── pngfix │ │ └── seed │ ├── size │ │ └── seed │ └── tcpdump │ │ └── seed ├── full-seeds │ ├── 1_run_objdump.sh │ ├── audiofile │ │ └── seed │ ├── binutils │ │ └── seed │ ├── c++filt │ │ ├── seed1 │ │ ├── seed2 │ │ ├── seed3 │ │ ├── seed4 │ │ ├── seed5 │ │ ├── seed6 │ │ └── seed7 │ ├── ffmpeg │ │ └── seed │ ├── file │ │ ├── CVE-2014-1943.testfile │ │ ├── JW07022A.mp3.testfile │ │ ├── escapevel.testfile │ │ ├── fit-map-data.testfile │ │ ├── gedcom.testfile │ │ ├── hddrawcopytool.testfile │ │ ├── issue311docx.testfile │ │ ├── issue359xlsx.testfile │ │ ├── json1.testfile │ │ ├── json2.testfile │ │ ├── json3.testfile │ │ ├── regex-eol.testfile │ │ ├── zstd-v0.2-FF.testfile │ │ ├── zstd-v0.3-FF.testfile │ │ ├── zstd-v0.4-FF.testfile │ │ ├── zstd-v0.5-FF.testfile │ │ ├── zstd-v0.6-FF.testfile │ │ ├── zstd-v0.7-21.testfile │ │ ├── zstd-v0.7-22.testfile │ │ ├── zstd-v0.8-01.testfile │ │ ├── zstd-v0.8-02.testfile │ │ ├── zstd-v0.8-03.testfile │ │ ├── zstd-v0.8-16.testfile │ │ ├── zstd-v0.8-20.testfile │ │ ├── zstd-v0.8-21.testfile │ │ ├── zstd-v0.8-22.testfile │ │ ├── zstd-v0.8-23.testfile │ │ ├── zstd-v0.8-F4.testfile │ │ └── zstd-v0.8-FF.testfile │ ├── fuzz │ │ └── objdump │ │ │ └── output │ │ │ ├── plot_data │ │ │ └── queue │ │ │ ├── id:000000,orig:4channels │ │ │ ├── id:000001,orig:aa-enabled │ │ │ ├── id:000002,orig:acpi_listen │ │ │ ├── id:000003,orig:afl-gcc │ │ │ ├── id:000004,orig:afl-gotcpu │ │ │ ├── id:000005,orig:afl-tmin │ │ │ ├── id:000006,orig:apgbfm │ │ │ ├── id:000007,orig:aplay │ │ │ ├── id:000008,orig:arm2hpdl │ │ │ ├── id:000009,orig:avahi-resolve │ │ │ ├── id:000010,orig:baobab │ │ │ ├── id:000011,orig:bitmap │ │ │ ├── id:000012,orig:bridge │ │ │ ├── id:000013,orig:btrfs-convert │ │ │ ├── id:000014,orig:canberra-gtk-play │ │ │ ├── id:000015,orig:cdparanoia │ │ │ ├── id:000016,orig:chattr │ │ │ ├── id:000017,orig:chgrp │ │ │ ├── id:000018,orig:column │ │ │ ├── id:000019,orig:compiz │ │ │ ├── id:000020,orig:cpp-5 │ │ │ ├── id:000021,orig:cups-calibrate │ │ │ ├── id:000022,orig:date │ │ │ ├── id:000023,orig:dcraw_half │ │ │ ├── id:000024,orig:desktop-file-install │ │ │ ├── id:000025,orig:devdump │ │ │ ├── id:000026,orig:dpkg │ │ │ ├── id:000027,orig:dpkg-trigger │ │ │ ├── id:000028,orig:e2fsck │ │ │ ├── id:000029,orig:esc-m │ │ │ ├── id:000030,orig:fax2tiff │ │ │ ├── id:000031,orig:fc-conflist │ │ │ ├── id:000032,orig:fgrep │ │ │ ├── id:000033,orig:fsck.minix │ │ │ ├── id:000034,orig:fstab-decode │ │ │ ├── id:000035,orig:fuser │ │ │ ├── id:000036,orig:gcov-5 │ │ │ ├── id:000037,orig:gcr-viewer │ │ │ ├── id:000038,orig:gdbus │ │ │ ├── id:000039,orig:git-upload-pack │ │ │ ├── id:000040,orig:gnome-calendar │ │ │ ├── id:000041,orig:gnome-software │ │ │ ├── id:000042,orig:gperf │ │ │ ├── id:000043,orig:groups │ │ │ ├── id:000044,orig:grub-glue-efi │ │ │ ├── id:000045,orig:gtester │ │ │ ├── id:000046,orig:gtk-window-decorator │ │ │ ├── id:000047,orig:gvfs-move │ │ │ ├── id:000048,orig:ibus │ │ │ ├── id:000049,orig:ico │ │ │ ├── id:000050,orig:id │ │ │ ├── id:000051,orig:ilbmtoppm │ │ │ ├── id:000052,orig:imgcmp │ │ │ ├── id:000053,orig:info │ │ │ ├── id:000054,orig:intel-gen4asm │ │ │ ├── id:000055,orig:intel_error_decode │ │ │ ├── id:000056,orig:intel_gtt │ │ │ ├── id:000057,orig:intel_watermark │ │ │ ├── id:000058,orig:ionice │ │ │ ├── id:000059,orig:ipcs │ │ │ ├── id:000060,orig:isovfy │ │ │ ├── id:000061,orig:iwconfig │ │ │ ├── id:000062,orig:j2amidi_bridge │ │ │ ├── id:000063,orig:jack-osc │ │ │ ├── id:000064,orig:jack-play │ │ │ ├── id:000065,orig:jack-stdin │ │ │ ├── id:000066,orig:jade │ │ │ ├── id:000067,orig:jasper │ │ │ ├── id:000068,orig:jpegtran │ │ │ ├── id:000069,orig:link │ │ │ ├── id:000070,orig:linkicc │ │ │ ├── id:000071,orig:ln │ │ │ ├── id:000072,orig:losetup │ │ │ ├── id:000073,orig:lscpu │ │ │ ├── id:000074,orig:lsipc │ │ │ ├── id:000075,orig:luac5.1 │ │ │ ├── id:000076,orig:luac50 │ │ │ ├── id:000077,orig:lvmpolld │ │ │ ├── id:000078,orig:makecsd │ │ │ ├── id:000079,orig:mawk │ │ │ ├── id:000080,orig:mem_image │ │ │ ├── id:000081,orig:mkfs.xfs │ │ │ ├── id:000082,orig:mkhomedir_helper │ │ │ ├── id:000083,orig:mkreiserfs │ │ │ ├── id:000084,orig:mmcli │ │ │ ├── id:000085,orig:mp3gain │ │ │ ├── id:000086,orig:mpg123-id3dump │ │ │ ├── id:000087,orig:msgcomm │ │ │ ├── id:000088,orig:msgexec │ │ │ ├── id:000089,orig:msgmerge │ │ │ ├── id:000090,orig:multirender_test │ │ │ ├── id:000091,orig:nameif │ │ │ ├── id:000092,orig:nm-applet │ │ │ ├── id:000093,orig:nohup │ │ │ ├── id:000094,orig:nsgmls │ │ │ ├── id:000095,orig:numfmt │ │ │ ├── id:000096,orig:ogginfo │ │ │ ├── id:000097,orig:orte-server │ │ │ ├── id:000098,orig:pactl │ │ │ ├── id:000099,orig:pbmtextps │ │ │ ├── id:000100,orig:pbmtoepsi │ │ │ ├── id:000101,orig:pccardctl │ │ │ ├── id:000102,orig:pdftocairo │ │ │ ├── id:000103,orig:pdftohtml │ │ │ ├── id:000104,orig:pdftops │ │ │ ├── id:000105,orig:pg │ │ │ ├── id:000106,orig:pgmcrater │ │ │ ├── id:000107,orig:pgmtopbm │ │ │ ├── id:000108,orig:ping6 │ │ │ ├── id:000109,orig:pjtoppm │ │ │ ├── id:000110,orig:plipconfig │ │ │ ├── id:000111,orig:pnmalias │ │ │ ├── id:000112,orig:pnmconvol │ │ │ ├── id:000113,orig:pnmfile │ │ │ ├── id:000114,orig:pnmpsnr │ │ │ ├── id:000115,orig:pnmremap │ │ │ ├── id:000116,orig:pnmscalefixed │ │ │ ├── id:000117,orig:pnmtorle │ │ │ ├── id:000118,orig:pnmtosgi │ │ │ ├── id:000119,orig:ppm2tiff │ │ │ ├── id:000120,orig:ppmlabel │ │ │ ├── id:000121,orig:ppmntsc │ │ │ ├── id:000122,orig:ppmtoleaf │ │ │ ├── id:000123,orig:ppmtopuzz │ │ │ ├── id:000124,orig:ppmtotga │ │ │ ├── id:000125,orig:printerbanner │ │ │ ├── id:000126,orig:psfxtable │ │ │ ├── id:000127,orig:psicc │ │ │ ├── id:000128,orig:pylupdate5 │ │ │ ├── id:000129,orig:raw-identify │ │ │ ├── id:000130,orig:raw2tiff │ │ │ ├── id:000131,orig:rdjpgcom │ │ │ ├── id:000132,orig:reiserfsck │ │ │ ├── id:000133,orig:reiserfstune │ │ │ ├── id:000134,orig:resize │ │ │ ├── id:000135,orig:sbattach │ │ │ ├── id:000136,orig:sbigtopgm │ │ │ ├── id:000137,orig:sbsiglist │ │ │ ├── id:000138,orig:sdiff │ │ │ ├── id:000139,orig:seed │ │ │ ├── id:000140,orig:sessreg │ │ │ ├── id:000141,orig:setfattr │ │ │ ├── id:000142,orig:sgitopnm │ │ │ ├── id:000143,orig:sgml2xml │ │ │ ├── id:000144,orig:sha1sum │ │ │ ├── id:000145,orig:signon-ui │ │ │ ├── id:000146,orig:simple_dcraw │ │ │ ├── id:000147,orig:sleep │ │ │ ├── id:000148,orig:spam │ │ │ ├── id:000149,orig:spent │ │ │ ├── id:000150,orig:split │ │ │ ├── id:000151,orig:srconv │ │ │ ├── id:000152,orig:stk-demo │ │ │ ├── id:000153,orig:svnadmin │ │ │ ├── id:000154,orig:svnauthz │ │ │ ├── id:000155,orig:svndumpfilter │ │ │ ├── id:000156,orig:svnlook │ │ │ ├── id:000157,orig:svnrdump │ │ │ ├── id:000158,orig:svnserve │ │ │ ├── id:000159,orig:synclient │ │ │ ├── id:000160,orig:tc │ │ │ ├── id:000161,orig:telnet.netkit │ │ │ ├── id:000162,orig:tgatoppm │ │ │ ├── id:000163,orig:tiff2pdf │ │ │ ├── id:000164,orig:tiff2rgba │ │ │ ├── id:000165,orig:tiffcp │ │ │ ├── id:000166,orig:tiffcrop │ │ │ ├── id:000167,orig:tiffdump │ │ │ ├── id:000168,orig:tiffmedian │ │ │ ├── id:000169,orig:tiffsplit │ │ │ ├── id:000170,orig:tifftopnm │ │ │ ├── id:000171,orig:toilet │ │ │ ├── id:000172,orig:tolua++5.1 │ │ │ ├── id:000173,orig:transicc │ │ │ ├── id:000174,orig:true │ │ │ ├── id:000175,orig:ul │ │ │ ├── id:000176,orig:unity-scope-loader │ │ │ ├── id:000177,orig:unity-webapps-runner │ │ │ ├── id:000178,orig:unlink │ │ │ ├── id:000179,orig:unprocessed_raw │ │ │ ├── id:000180,orig:updatedb.mlocate │ │ │ ├── id:000181,orig:uuid │ │ │ ├── id:000182,orig:vdir │ │ │ ├── id:000183,orig:watch │ │ │ ├── id:000184,orig:whoopsie-preferences │ │ │ ├── id:000185,orig:x86_64-linux-gnu-addr2line │ │ │ ├── id:000186,orig:x86_64-linux-gnu-gprof │ │ │ ├── id:000187,orig:x86_64-linux-gnu-ranlib │ │ │ ├── id:000188,orig:x86_64-linux-gnu-strip │ │ │ ├── id:000189,orig:xbiff │ │ │ ├── id:000190,orig:xditview │ │ │ ├── id:000191,orig:xfs_repair │ │ │ ├── id:000192,orig:xkbbell │ │ │ ├── id:000193,orig:xkbprint │ │ │ ├── id:000194,orig:xkbvleds │ │ │ ├── id:000195,orig:xlsclients │ │ │ ├── id:000196,orig:xrandr │ │ │ ├── id:000197,orig:xwdtopnm │ │ │ ├── id:000198,orig:xwininfo │ │ │ ├── id:000199,orig:yelp │ │ │ └── id:000200,orig:zdump │ ├── gif2png │ │ ├── 2x2.gif │ │ ├── alpha_gif_a.gif │ │ ├── anim-gr.gif │ │ ├── beacon.gif │ │ ├── interlaced.gif │ │ ├── moon_impact.gif │ │ ├── not_kitty.gif │ │ └── sample_1.gif │ ├── lepton │ │ ├── android.jpg │ │ ├── androidcrop.jpg │ │ ├── androidcropoptions.jpg │ │ ├── androidprogressive.jpg │ │ ├── androidtrail.jpg │ │ ├── arithmetic.jpg │ │ ├── badzerorun.jpg │ │ ├── colorswap.jpg │ │ ├── gold-legacy.lep │ │ ├── gray2sf.jpg │ │ ├── grayscale.jpg │ │ ├── hq.jpg │ │ ├── iphone.jpg │ │ ├── iphone16.lep │ │ ├── iphonecity.jpg │ │ ├── iphonecrop.jpg │ │ ├── iphonecrop2.jpg │ │ ├── iphoneprogressive.jpg │ │ ├── iphoneprogressive2.jpg │ │ ├── narrowrst.jpg │ │ ├── narrowrst.lep │ │ ├── nofsync.jpg │ │ ├── roundtripfail.jpg │ │ ├── singlerowtrunc.jpg │ │ ├── slrcity.jpg │ │ ├── slrhills.jpg │ │ ├── slrindoor.jpg │ │ ├── trailingrst.jpg │ │ ├── trailingrst2.jpg │ │ ├── trunc.jpg │ │ └── truncatedzerorun.jpg │ ├── libarchive │ │ └── seed │ ├── libjpeg │ │ ├── testimgari.jpg │ │ ├── testimgint.jpg │ │ ├── testorig.jpg │ │ └── testorig12.jpg │ ├── libtiff │ │ ├── logluv-3c-16b.tiff │ │ ├── lzw-single-strip.tiff │ │ ├── minisblack-1c-16b.tiff │ │ ├── minisblack-1c-8b.tiff │ │ ├── minisblack-2c-8b-alpha.tiff │ │ ├── miniswhite-1c-1b.tiff │ │ ├── palette-1c-1b.tiff │ │ ├── palette-1c-4b.tiff │ │ ├── palette-1c-8b.tiff │ │ ├── quad-lzw-compat.tiff │ │ ├── quad-tile.jpg.tiff │ │ ├── rgb-3c-16b.tiff │ │ └── rgb-3c-8b.tiff │ ├── nm │ │ ├── Strip-N.LC_MAIN.exe.macho-x86_64 │ │ ├── Strip-N.hello.exe.macho-x86_64 │ │ ├── Strip-ST.dylib.macho-x86_64 │ │ ├── example.lib │ │ ├── hello.obj.elf-i386 │ │ ├── hello.obj.elf-x86_64 │ │ ├── hello.obj.macho-x86_64 │ │ ├── init-fini.out.elf-x86_64 │ │ ├── libExample.a.macho-x86_64 │ │ ├── libbogus1.a │ │ ├── libbogus10.a │ │ ├── libbogus11.a │ │ ├── libbogus12.a │ │ ├── libbogus13.a │ │ ├── libbogus14.a │ │ ├── libbogus2.a │ │ ├── libbogus3.a │ │ ├── libbogus4.a │ │ ├── libbogus5.a │ │ ├── libbogus6.a │ │ ├── libbogus7.a │ │ ├── libbogus8.a │ │ ├── libbogus9.a │ │ ├── liblong_filenames.a │ │ ├── macho-bad-zero-nsect-for-N_SECT │ │ ├── macho-dwarf-x86_64 │ │ ├── section-filter.obj │ │ ├── test.IRobj-x86_64 │ │ ├── weak.obj.elf-x86_64 │ │ └── win64-unwind.exe.coff-x86_64.obj │ ├── objdump │ │ ├── 4channels │ │ ├── aa-enabled │ │ ├── acpi_listen │ │ ├── afl-gcc │ │ ├── afl-gotcpu │ │ ├── afl-tmin │ │ ├── apgbfm │ │ ├── aplay │ │ ├── arm2hpdl │ │ ├── avahi-resolve │ │ ├── baobab │ │ ├── bitmap │ │ ├── bridge │ │ ├── btrfs-convert │ │ ├── canberra-gtk-play │ │ ├── cdparanoia │ │ ├── chattr │ │ ├── chgrp │ │ ├── column │ │ ├── compiz │ │ ├── cpp-5 │ │ ├── cups-calibrate │ │ ├── date │ │ ├── dcraw_half │ │ ├── desktop-file-install │ │ ├── devdump │ │ ├── dpkg │ │ ├── dpkg-trigger │ │ ├── e2fsck │ │ ├── esc-m │ │ ├── fax2tiff │ │ ├── fc-conflist │ │ ├── fgrep │ │ ├── fsck.minix │ │ ├── fstab-decode │ │ ├── fuser │ │ ├── gcov-5 │ │ ├── gcr-viewer │ │ ├── gdbus │ │ ├── git-upload-pack │ │ ├── gnome-calendar │ │ ├── gnome-software │ │ ├── gperf │ │ ├── groups │ │ ├── grub-glue-efi │ │ ├── gtester │ │ ├── gtk-window-decorator │ │ ├── gvfs-move │ │ ├── ibus │ │ ├── ico │ │ ├── id │ │ ├── ilbmtoppm │ │ ├── imgcmp │ │ ├── info │ │ ├── intel-gen4asm │ │ ├── intel_error_decode │ │ ├── intel_gtt │ │ ├── intel_watermark │ │ ├── ionice │ │ ├── ipcs │ │ ├── isovfy │ │ ├── iwconfig │ │ ├── j2amidi_bridge │ │ ├── jack-osc │ │ ├── jack-play │ │ ├── jack-stdin │ │ ├── jade │ │ ├── jasper │ │ ├── jpegtran │ │ ├── link │ │ ├── linkicc │ │ ├── ln │ │ ├── losetup │ │ ├── lscpu │ │ ├── lsipc │ │ ├── luac5.1 │ │ ├── luac50 │ │ ├── lvmpolld │ │ ├── makecsd │ │ ├── mawk │ │ ├── mem_image │ │ ├── mkfs.xfs │ │ ├── mkhomedir_helper │ │ ├── mkreiserfs │ │ ├── mmcli │ │ ├── mp3gain │ │ ├── mpg123-id3dump │ │ ├── msgcomm │ │ ├── msgexec │ │ ├── msgmerge │ │ ├── multirender_test │ │ ├── nameif │ │ ├── nm-applet │ │ ├── nohup │ │ ├── nsgmls │ │ ├── numfmt │ │ ├── ogginfo │ │ ├── orte-server │ │ ├── pactl │ │ ├── pbmtextps │ │ ├── pbmtoepsi │ │ ├── pccardctl │ │ ├── pdftocairo │ │ ├── pdftohtml │ │ ├── pdftops │ │ ├── pg │ │ ├── pgmcrater │ │ ├── pgmtopbm │ │ ├── ping6 │ │ ├── pjtoppm │ │ ├── plipconfig │ │ ├── pnmalias │ │ ├── pnmconvol │ │ ├── pnmfile │ │ ├── pnmpsnr │ │ ├── pnmremap │ │ ├── pnmscalefixed │ │ ├── pnmtorle │ │ ├── pnmtosgi │ │ ├── ppm2tiff │ │ ├── ppmlabel │ │ ├── ppmntsc │ │ ├── ppmtoleaf │ │ ├── ppmtopuzz │ │ ├── ppmtotga │ │ ├── printerbanner │ │ ├── psfxtable │ │ ├── psicc │ │ ├── pylupdate5 │ │ ├── raw-identify │ │ ├── raw2tiff │ │ ├── rdjpgcom │ │ ├── reiserfsck │ │ ├── reiserfstune │ │ ├── resize │ │ ├── sbattach │ │ ├── sbigtopgm │ │ ├── sbsiglist │ │ ├── sdiff │ │ ├── seed │ │ ├── sessreg │ │ ├── setfattr │ │ ├── sgitopnm │ │ ├── sgml2xml │ │ ├── sha1sum │ │ ├── signon-ui │ │ ├── simple_dcraw │ │ ├── sleep │ │ ├── spam │ │ ├── spent │ │ ├── split │ │ ├── srconv │ │ ├── stk-demo │ │ ├── svnadmin │ │ ├── svnauthz │ │ ├── svndumpfilter │ │ ├── svnlook │ │ ├── svnrdump │ │ ├── svnserve │ │ ├── synclient │ │ ├── tc │ │ ├── telnet.netkit │ │ ├── tgatoppm │ │ ├── tiff2pdf │ │ ├── tiff2rgba │ │ ├── tiffcp │ │ ├── tiffcrop │ │ ├── tiffdump │ │ ├── tiffmedian │ │ ├── tiffsplit │ │ ├── tifftopnm │ │ ├── toilet │ │ ├── tolua++5.1 │ │ ├── transicc │ │ ├── true │ │ ├── ul │ │ ├── unity-scope-loader │ │ ├── unity-webapps-runner │ │ ├── unlink │ │ ├── unprocessed_raw │ │ ├── updatedb.mlocate │ │ ├── uuid │ │ ├── vdir │ │ ├── watch │ │ ├── whoopsie-preferences │ │ ├── x86_64-linux-gnu-addr2line │ │ ├── x86_64-linux-gnu-gprof │ │ ├── x86_64-linux-gnu-ranlib │ │ ├── x86_64-linux-gnu-strip │ │ ├── xbiff │ │ ├── xditview │ │ ├── xfs_repair │ │ ├── xkbbell │ │ ├── xkbprint │ │ ├── xkbvleds │ │ ├── xlsclients │ │ ├── xrandr │ │ ├── xwdtopnm │ │ ├── xwininfo │ │ ├── yelp │ │ └── zdump │ ├── openjpeg │ │ ├── file1.jp2 │ │ ├── file2.jp2 │ │ ├── file3.jp2 │ │ ├── file4.jp2 │ │ ├── file5.jp2 │ │ ├── file6.jp2 │ │ ├── file7.jp2 │ │ ├── file8.jp2 │ │ ├── file9.jp2 │ │ ├── p0_01.j2k │ │ ├── p0_02.j2k │ │ ├── p0_03.j2k │ │ ├── p0_04.j2k │ │ ├── p0_05.j2k │ │ ├── p0_06.j2k │ │ ├── p0_07.j2k │ │ ├── p0_08.j2k │ │ ├── p0_09.j2k │ │ ├── p0_10.j2k │ │ ├── p0_11.j2k │ │ ├── p0_12.j2k │ │ ├── p0_13.j2k │ │ ├── p0_14.j2k │ │ ├── p0_15.j2k │ │ ├── p0_16.j2k │ │ ├── p1_01.j2k │ │ ├── p1_02.j2k │ │ ├── p1_03.j2k │ │ ├── p1_04.j2k │ │ ├── p1_05.j2k │ │ ├── p1_06.j2k │ │ ├── p1_07.j2k │ │ ├── subsampling_1.jp2 │ │ ├── subsampling_2.jp2 │ │ ├── zoo1.jp2 │ │ └── zoo2.jp2 │ ├── pngfix │ │ ├── VisualPng.png │ │ ├── basn0g01.png │ │ ├── basn0g02.png │ │ ├── basn0g04.png │ │ ├── basn0g08.png │ │ ├── basn0g16.png │ │ ├── basn2c08.png │ │ ├── basn2c16.png │ │ ├── basn3p01.png │ │ ├── basn3p02.png │ │ ├── basn3p04.png │ │ ├── basn3p08.png │ │ ├── basn4a08.png │ │ ├── basn4a16.png │ │ ├── basn6a08.png │ │ ├── basn6a16.png │ │ ├── ftbbn0g01.png │ │ ├── ftbbn0g02.png │ │ ├── ftbbn0g04.png │ │ ├── ftbbn2c16.png │ │ ├── ftbbn3p08.png │ │ ├── ftbgn2c16.png │ │ ├── ftbgn3p08.png │ │ ├── ftbrn2c08.png │ │ ├── ftbwn0g16.png │ │ ├── ftbwn3p08.png │ │ ├── ftbyn3p08.png │ │ ├── ftp0n0g08.png │ │ ├── ftp0n2c08.png │ │ ├── ftp0n3p08.png │ │ ├── ftp1n3p08.png │ │ ├── gray-1-1.8-tRNS.png │ │ ├── gray-1-1.8.png │ │ ├── gray-1-linear-tRNS.png │ │ ├── gray-1-linear.png │ │ ├── gray-1-sRGB-tRNS.png │ │ ├── gray-1-sRGB.png │ │ ├── gray-1-tRNS.png │ │ ├── gray-1.png │ │ ├── gray-16-1.8-tRNS.png │ │ ├── gray-16-1.8.png │ │ ├── gray-16-linear-tRNS.png │ │ ├── gray-16-linear.png │ │ ├── gray-16-sRGB-tRNS.png │ │ ├── gray-16-sRGB.png │ │ ├── gray-16-tRNS.png │ │ ├── gray-16.png │ │ ├── gray-2-1.8-tRNS.png │ │ ├── gray-2-1.8.png │ │ ├── gray-2-linear-tRNS.png │ │ ├── gray-2-linear.png │ │ ├── gray-2-sRGB-tRNS.png │ │ ├── gray-2-sRGB.png │ │ ├── gray-2-tRNS.png │ │ ├── gray-2.png │ │ ├── gray-4-1.8-tRNS.png │ │ ├── gray-4-1.8.png │ │ ├── gray-4-linear-tRNS.png │ │ ├── gray-4-linear.png │ │ ├── gray-4-sRGB-tRNS.png │ │ ├── gray-4-sRGB.png │ │ ├── gray-4-tRNS.png │ │ ├── gray-4.png │ │ ├── gray-8-1.8-tRNS.png │ │ ├── gray-8-1.8.png │ │ ├── gray-8-linear-tRNS.png │ │ ├── gray-8-linear.png │ │ ├── gray-8-sRGB-tRNS.png │ │ ├── gray-8-sRGB.png │ │ ├── gray-8-tRNS.png │ │ ├── gray-8.png │ │ ├── gray-alpha-16-1.8.png │ │ ├── gray-alpha-16-linear.png │ │ ├── gray-alpha-16-sRGB.png │ │ ├── gray-alpha-16.png │ │ ├── gray-alpha-8-1.8.png │ │ ├── gray-alpha-8-linear.png │ │ ├── gray-alpha-8-sRGB.png │ │ ├── gray-alpha-8.png │ │ ├── ibasn0g01.png │ │ ├── ibasn0g02.png │ │ ├── ibasn0g04.png │ │ ├── ibasn0g08.png │ │ ├── ibasn0g16.png │ │ ├── ibasn2c08.png │ │ ├── ibasn2c16.png │ │ ├── ibasn3p01.png │ │ ├── ibasn3p02.png │ │ ├── ibasn3p04.png │ │ ├── ibasn3p08.png │ │ ├── ibasn4a08.png │ │ ├── ibasn4a16.png │ │ ├── ibasn6a08.png │ │ ├── ibasn6a16.png │ │ ├── iftbbn0g01.png │ │ ├── iftbbn0g02.png │ │ ├── iftbbn0g04.png │ │ ├── iftbbn2c16.png │ │ ├── iftbbn3p08.png │ │ ├── iftbgn2c16.png │ │ ├── iftbgn3p08.png │ │ ├── iftbrn2c08.png │ │ ├── iftbwn0g16.png │ │ ├── iftbwn3p08.png │ │ ├── iftbyn3p08.png │ │ ├── iftp0n0g08.png │ │ ├── iftp0n2c08.png │ │ ├── iftp0n3p08.png │ │ ├── iftp1n3p08.png │ │ ├── palette-1-1.8-tRNS.png │ │ ├── palette-1-1.8.png │ │ ├── palette-1-linear-tRNS.png │ │ ├── palette-1-linear.png │ │ ├── palette-1-sRGB-tRNS.png │ │ ├── palette-1-sRGB.png │ │ ├── palette-1-tRNS.png │ │ ├── palette-1.png │ │ ├── palette-2-1.8-tRNS.png │ │ ├── palette-2-1.8.png │ │ ├── palette-2-linear-tRNS.png │ │ ├── palette-2-linear.png │ │ ├── palette-2-sRGB-tRNS.png │ │ ├── palette-2-sRGB.png │ │ ├── palette-2-tRNS.png │ │ ├── palette-2.png │ │ ├── palette-4-1.8-tRNS.png │ │ ├── palette-4-1.8.png │ │ ├── palette-4-linear-tRNS.png │ │ ├── palette-4-linear.png │ │ ├── palette-4-sRGB-tRNS.png │ │ ├── palette-4-sRGB.png │ │ ├── palette-4-tRNS.png │ │ ├── palette-4.png │ │ ├── palette-8-1.8-tRNS.png │ │ ├── palette-8-1.8.png │ │ ├── palette-8-linear-tRNS.png │ │ ├── palette-8-linear.png │ │ ├── palette-8-sRGB-tRNS.png │ │ ├── palette-8-sRGB.png │ │ ├── palette-8-tRNS.png │ │ ├── palette-8.png │ │ ├── pngbar.png │ │ ├── pngnow.png │ │ ├── pngtest.png │ │ ├── rgb-16-1.8-tRNS.png │ │ ├── rgb-16-1.8.png │ │ ├── rgb-16-linear-tRNS.png │ │ ├── rgb-16-linear.png │ │ ├── rgb-16-sRGB-tRNS.png │ │ ├── rgb-16-sRGB.png │ │ ├── rgb-16-tRNS.png │ │ ├── rgb-16.png │ │ ├── rgb-8-1.8-tRNS.png │ │ ├── rgb-8-1.8.png │ │ ├── rgb-8-linear-tRNS.png │ │ ├── rgb-8-linear.png │ │ ├── rgb-8-sRGB-tRNS.png │ │ ├── rgb-8-sRGB.png │ │ ├── rgb-8-tRNS.png │ │ ├── rgb-8.png │ │ ├── rgb-alpha-16-1.8.png │ │ ├── rgb-alpha-16-linear.png │ │ ├── rgb-alpha-16-sRGB.png │ │ ├── rgb-alpha-16.png │ │ ├── rgb-alpha-8-1.8.png │ │ ├── rgb-alpha-8-linear.png │ │ ├── rgb-alpha-8-sRGB.png │ │ ├── rgb-alpha-8.png │ │ └── toucan.png │ ├── size │ │ ├── 4channels │ │ ├── aa-enabled │ │ ├── acpi_listen │ │ ├── afl-gcc │ │ ├── afl-gotcpu │ │ ├── afl-tmin │ │ ├── apgbfm │ │ ├── aplay │ │ ├── arm2hpdl │ │ ├── avahi-resolve │ │ ├── baobab │ │ ├── bitmap │ │ ├── bridge │ │ ├── btrfs-convert │ │ ├── canberra-gtk-play │ │ ├── cdparanoia │ │ ├── chattr │ │ ├── chgrp │ │ ├── column │ │ ├── compiz │ │ ├── cpp-5 │ │ ├── cups-calibrate │ │ ├── date │ │ ├── dcraw_half │ │ ├── desktop-file-install │ │ ├── devdump │ │ ├── dpkg │ │ ├── dpkg-trigger │ │ ├── e2fsck │ │ ├── esc-m │ │ ├── fax2tiff │ │ ├── fc-conflist │ │ ├── fgrep │ │ ├── fsck.minix │ │ ├── fstab-decode │ │ ├── fuser │ │ ├── gcov-5 │ │ ├── gcr-viewer │ │ ├── gdbus │ │ ├── git-upload-pack │ │ ├── gnome-calendar │ │ ├── gnome-software │ │ ├── gperf │ │ ├── groups │ │ ├── grub-glue-efi │ │ ├── gtester │ │ ├── gtk-window-decorator │ │ ├── gvfs-move │ │ ├── ibus │ │ ├── ico │ │ ├── id │ │ ├── ilbmtoppm │ │ ├── imgcmp │ │ ├── info │ │ ├── intel-gen4asm │ │ ├── intel_error_decode │ │ ├── intel_gtt │ │ ├── intel_watermark │ │ ├── ionice │ │ ├── ipcs │ │ ├── isovfy │ │ ├── iwconfig │ │ ├── j2amidi_bridge │ │ ├── jack-osc │ │ ├── jack-play │ │ ├── jack-stdin │ │ ├── jade │ │ ├── jasper │ │ ├── jpegtran │ │ ├── link │ │ ├── linkicc │ │ ├── ln │ │ ├── losetup │ │ ├── lscpu │ │ ├── lsipc │ │ ├── luac5.1 │ │ ├── luac50 │ │ ├── lvmpolld │ │ ├── makecsd │ │ ├── mawk │ │ ├── mem_image │ │ ├── mkfs.xfs │ │ ├── mkhomedir_helper │ │ ├── mkreiserfs │ │ ├── mmcli │ │ ├── mp3gain │ │ ├── mpg123-id3dump │ │ ├── msgcomm │ │ ├── msgexec │ │ ├── msgmerge │ │ ├── multirender_test │ │ ├── nameif │ │ ├── nm-applet │ │ ├── nohup │ │ ├── nsgmls │ │ ├── numfmt │ │ ├── ogginfo │ │ ├── orte-server │ │ ├── pactl │ │ ├── pbmtextps │ │ ├── pbmtoepsi │ │ ├── pccardctl │ │ ├── pdftocairo │ │ ├── pdftohtml │ │ ├── pdftops │ │ ├── pg │ │ ├── pgmcrater │ │ ├── pgmtopbm │ │ ├── ping6 │ │ ├── pjtoppm │ │ ├── plipconfig │ │ ├── pnmalias │ │ ├── pnmconvol │ │ ├── pnmfile │ │ ├── pnmpsnr │ │ ├── pnmremap │ │ ├── pnmscalefixed │ │ ├── pnmtorle │ │ ├── pnmtosgi │ │ ├── ppm2tiff │ │ ├── ppmlabel │ │ ├── ppmntsc │ │ ├── ppmtoleaf │ │ ├── ppmtopuzz │ │ ├── ppmtotga │ │ ├── printerbanner │ │ ├── psfxtable │ │ ├── psicc │ │ ├── pylupdate5 │ │ ├── raw-identify │ │ ├── raw2tiff │ │ ├── rdjpgcom │ │ ├── reiserfsck │ │ ├── reiserfstune │ │ ├── resize │ │ ├── sbattach │ │ ├── sbigtopgm │ │ ├── sbsiglist │ │ ├── sdiff │ │ ├── seed │ │ ├── sessreg │ │ ├── setfattr │ │ ├── sgitopnm │ │ ├── sgml2xml │ │ ├── sha1sum │ │ ├── signon-ui │ │ ├── simple_dcraw │ │ ├── sleep │ │ ├── spam │ │ ├── spent │ │ ├── split │ │ ├── srconv │ │ ├── stk-demo │ │ ├── svnadmin │ │ ├── svnauthz │ │ ├── svndumpfilter │ │ ├── svnlook │ │ ├── svnrdump │ │ ├── svnserve │ │ ├── synclient │ │ ├── tc │ │ ├── telnet.netkit │ │ ├── tgatoppm │ │ ├── tiff2pdf │ │ ├── tiff2rgba │ │ ├── tiffcp │ │ ├── tiffcrop │ │ ├── tiffdump │ │ ├── tiffmedian │ │ ├── tiffsplit │ │ ├── tifftopnm │ │ ├── toilet │ │ ├── tolua++5.1 │ │ ├── transicc │ │ ├── true │ │ ├── ul │ │ ├── unity-scope-loader │ │ ├── unity-webapps-runner │ │ ├── unlink │ │ ├── unprocessed_raw │ │ ├── updatedb.mlocate │ │ ├── uuid │ │ ├── vdir │ │ ├── watch │ │ ├── whoopsie-preferences │ │ ├── x86_64-linux-gnu-addr2line │ │ ├── x86_64-linux-gnu-gprof │ │ ├── x86_64-linux-gnu-ranlib │ │ ├── x86_64-linux-gnu-strip │ │ ├── xbiff │ │ ├── xditview │ │ ├── xfs_repair │ │ ├── xkbbell │ │ ├── xkbprint │ │ ├── xkbvleds │ │ ├── xlsclients │ │ ├── xrandr │ │ ├── xwdtopnm │ │ ├── xwininfo │ │ ├── yelp │ │ └── zdump │ └── tcpdump │ │ ├── babel_auth.pcap │ │ ├── babel_pad1.pcap │ │ ├── babel_rtt.pcap │ │ ├── bad-ipv4-version-pgm-heapoverflow.pcap │ │ ├── beep-oobr.pcap │ │ ├── bgp-addpath.pcap │ │ ├── bgp-aigp.pcap │ │ ├── bgp-large-community.pcap │ │ ├── bgp_mvpn_6_and_7.pcap │ │ ├── bgp_pmsi_tunnel-oobr.pcap │ │ ├── bgp_vpn_attrset.pcap │ │ ├── bgp_vpn_rt-oobr.pcap │ │ ├── bootp_asan-2.pcap │ │ └── bootp_asan.pcap ├── run.sh └── testsuite │ ├── binutils │ └── build.sh │ ├── common.sh │ ├── file │ └── build.sh │ ├── libpng │ └── build.sh │ └── tcpdump │ └── build.sh └── google-fuzzer-test-suite ├── README.md ├── base_template ├── build_target_program.sh ├── fts-asan-mopt │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-asan │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-fuzzan │ ├── .gitignore │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-min-mopt │ ├── .gitignore │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-min │ ├── .gitignore │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-msan │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh ├── fts-native │ ├── .gitignore │ ├── README.md │ ├── build.sh │ ├── build_target_program.sh │ ├── run.sh │ └── setup.sh └── fuzzer-test-suite │ ├── AUTHORS │ ├── CONTRIBUTING │ ├── LICENSE │ ├── README.md │ ├── boringssl-2016-02-12 │ ├── README.md │ ├── build.sh │ ├── crash-ffb22c3101db1e53e38fdf630efd3dfd19cbeb84 │ └── test-libfuzzer.sh │ ├── build-and-test.sh │ ├── c-ares-CVE-2016-5180 │ ├── README.md │ ├── build.sh │ ├── target.cc │ └── test-libfuzzer.sh │ ├── common.sh │ ├── custom-build.sh │ ├── docs │ ├── ab-testing.md │ └── images │ │ └── ab-design.png │ ├── engine-comparison │ ├── README.md │ ├── begin-experiment.sh │ ├── common-harness.sh │ ├── dispatcher-image │ │ ├── Dockerfile │ │ └── startup-dispatcher.sh │ ├── dispatcher.sh │ ├── gcpConfig.md │ ├── report-gen │ │ ├── base.html │ │ └── generate-report.go │ ├── runner-image │ │ ├── Dockerfile │ │ └── startup-runner.sh │ ├── runner.sh │ ├── tutorial │ │ ├── abTestingTutorial.md │ │ ├── config │ │ │ ├── afl-vanilla │ │ │ └── lf-vanilla │ │ └── param │ │ │ └── afl-lf.cfg │ └── util │ │ └── stop-experiment.sh │ ├── examples │ └── example-hooks.cc │ ├── freetype2-2017 │ ├── README.md │ ├── build.sh │ └── test-libfuzzer.sh │ ├── guetzli-2017-3-30 │ ├── README.md │ ├── build.sh │ ├── crash-5737651426557952 │ ├── jpeg.dict │ ├── seeds │ │ ├── not_kitty.jpg │ │ └── semiseed │ └── test-libfuzzer.sh │ ├── harfbuzz-1.3.2 │ ├── README.md │ ├── build.sh │ ├── crash-ac7c48dc90984a43c1424106d7046c101ada4bf3 │ └── test-libfuzzer.sh │ ├── json-2017-02-12 │ ├── README.md │ ├── build.sh │ ├── crash-1bd4fa4c5ddced4506c67dbe92e14ea7aa1bd47d │ ├── seeds │ │ └── seed │ └── test-libfuzzer.sh │ ├── lcms-2017-03-21 │ ├── README.md │ ├── build.sh │ ├── cms_transform_fuzzer.c │ ├── crash-6a7f7b35fc6de5b19080b1c32588c727caf5d396 │ ├── seeds │ │ └── seed │ └── test-libfuzzer.sh │ ├── libarchive-2017-01-04 │ ├── README.md │ ├── build.sh │ ├── clusterfuzz-testcase-minimized-6117891166437376 │ ├── libarchive_fuzzer.cc │ ├── seeds │ │ └── seed │ └── test-libfuzzer.sh │ ├── libjpeg-turbo-07-2017 │ ├── README.md │ ├── build.sh │ ├── libjpeg_turbo_fuzzer.cc │ ├── seeds │ │ └── seed.jpg │ └── test-libfuzzer.sh │ ├── libpng-1.2.56 │ ├── README.md │ ├── build.sh │ ├── oom-63efa8b5a2adf76dc225d62939db3337ff6774f1 │ ├── png_mutator.h │ ├── seeds │ │ └── seed.png │ ├── target.cc │ └── test-libfuzzer.sh │ ├── libssh-2017-1272 │ ├── README.md │ ├── build.sh │ ├── clusterfuzz-testcase-minimized-5180149127446528 │ ├── libssh_server_fuzzer.cc │ └── test-libfuzzer.sh │ ├── libxml2-v2.9.2 │ ├── README.md │ ├── build.sh │ ├── crash-50b12d37d6968a2cd9eb3665d158d9a2fb1f6e28 │ ├── crash-d8960e21ca40ea5dc60ad655000842376d4178a1 │ ├── leak-bdbb2857b7a086f003db1c418e1d124181341fb1 │ ├── target.cc │ ├── test-libfuzzer.sh │ └── uaf-1153fbf466b9474e6e3c48c72e86a4726b449ef7 │ ├── llvm-libcxxabi-2017-01-27 │ ├── README.md │ ├── build.sh │ ├── crash-37806028c307468801496b647ad8eb6d1f5c612e │ └── crash-3edc48212829c58f0e19e2f0ef7eec46ffd6bca9 │ ├── openssl-1.0.1f │ ├── README.md │ ├── build.sh │ ├── leak-268f0e85f4bc45cbaf4d257222b830eac18977f3 │ ├── runtime │ │ ├── server.key │ │ └── server.pem │ ├── target.cc │ └── test-libfuzzer.sh │ ├── openssl-1.0.2d │ ├── README.md │ ├── build.sh │ ├── crash-12ae1af0c82252420b5f780bc9ed48d3ba05109e │ ├── target.cc │ └── test-libfuzzer.sh │ ├── openssl-1.1.0c │ ├── README.md │ ├── build.sh │ ├── crash-4fce1eeb339d851b72fedba895163ec1daab51f3 │ ├── crash-ab3eea077a07a1353f86eea4b6075df2e6319a75 │ └── crash-c2a2dd95058258979548c016bbe04720ca1ea422 │ ├── openthread-2018-02-27 │ ├── README.md │ ├── build.sh │ ├── repro1 │ ├── repro10 │ ├── repro11 │ ├── repro12 │ ├── repro2 │ ├── repro3 │ ├── repro4 │ ├── repro5 │ ├── repro6 │ ├── repro7 │ ├── repro8 │ └── repro9 │ ├── pcre2-10.00 │ ├── README.md │ ├── build.sh │ ├── target.cc │ └── test-libfuzzer.sh │ ├── proj4-2017-08-14 │ ├── README.md │ ├── build.sh │ ├── leak-7c19589a27e15f3432d245c7685bd518693e70d3 │ └── test-libfuzzer.sh │ ├── re2-2014-12-09 │ ├── README.md │ ├── build.sh │ ├── crash-a23ed2a04358b9c070c603a5af6ae2b34598664a │ ├── target.cc │ └── test-libfuzzer.sh │ ├── sqlite-2016-11-14 │ ├── README.md │ ├── build.sh │ ├── crash-0adc497ccfcc1a4d5e031b735c599df0cae3f4eb │ ├── crash-1066e42866aad3a04e6851dc494ad54bc31b9f78 │ ├── leak-b0276985af5aa23c98d9abf33856ce069ef600e2 │ ├── ossfuzz.c │ ├── sql.dict │ ├── sqlite3.c │ └── sqlite3.h │ ├── test-everything.sh │ ├── tutorial │ ├── libFuzzerTutorial.md │ └── structure-aware-fuzzing.md │ ├── vorbis-2017-12-11 │ ├── README.md │ ├── build.sh │ ├── crash-23c2d78e497bf4aebe5859e3092657cb0af4c299 │ ├── crash-8c5dea6410b0fb0b21ff968a9966a0bd7956405f │ ├── crash-e86e0482b8d66f924e50e62f5d7cc36a0acb03a7 │ └── seeds │ │ └── sound.ogg │ ├── woff2-2016-05-06 │ ├── README.md │ ├── build.sh │ ├── crash-696cb49b6d7f63e153a6605f00aceb0d7738971a │ ├── oom-9d24534a23b3ce397f21f62fb23ba9c5e9213107 │ ├── target.cc │ └── test-libfuzzer.sh │ └── wpantund-2018-02-27 │ ├── README.md │ └── build.sh ├── build.sh └── run.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LICENSE -------------------------------------------------------------------------------- /LLVM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/Makefile -------------------------------------------------------------------------------- /LLVM/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/build.sh -------------------------------------------------------------------------------- /LLVM/scripts/install-asan-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/scripts/install-asan-files.sh -------------------------------------------------------------------------------- /LLVM/scripts/install-msan-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/scripts/install-msan-files.sh -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_allocator.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_allocator.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_fake_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_fake_stack.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_flags.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_flags.inc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_globals.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_globals.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_interface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_interface.inc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_interface_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_interface_internal.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_internal.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_mapping.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_options.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_poisoning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_poisoning.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_poisoning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_poisoning.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_rbtree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_rbtree.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_rbtree.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_report.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_report.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_rtems.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_rtems.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_rtl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_rtl.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/asan_shadow_setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/asan_shadow_setup.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/lib_asan_cmakelists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/lib_asan_cmakelists.txt -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/lib_msan_cmakelists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/lib_msan_cmakelists.txt -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/msan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/msan.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/msan_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/msan_allocator.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/msan_interceptors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/msan_interceptors.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/msan_linux.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/msan_linux.cc -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/msan_origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/msan_origin.h -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/sanitizer_CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/sanitizer_CMakeLists.txt -------------------------------------------------------------------------------- /LLVM/src/compiler-rt-files/sanitizer_linux_libcdep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/compiler-rt-files/sanitizer_linux_libcdep.cc -------------------------------------------------------------------------------- /LLVM/src/llvm-files/AddressSanitizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/LLVM/src/llvm-files/AddressSanitizer.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/README.md -------------------------------------------------------------------------------- /afl/afl-2.52b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/Makefile -------------------------------------------------------------------------------- /afl/afl-2.52b/QuickStartGuide.txt: -------------------------------------------------------------------------------- 1 | docs/QuickStartGuide.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/README: -------------------------------------------------------------------------------- 1 | docs/README -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-analyze.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-as.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-as.h -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-cmin -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-fuzz.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-gcc.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-gotcpu.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-plot -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-showmap.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-tmin.c -------------------------------------------------------------------------------- /afl/afl-2.52b/afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/afl-whatsup -------------------------------------------------------------------------------- /afl/afl-2.52b/alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/alloc-inl.h -------------------------------------------------------------------------------- /afl/afl-2.52b/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/config.h -------------------------------------------------------------------------------- /afl/afl-2.52b/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/debug.h -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/README.dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/README.dictionaries -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/gif.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/gif.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/html_tags.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/html_tags.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/jpeg.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/jpeg.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/js.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/js.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/json.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/json.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/pdf.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/pdf.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/png.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/png.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/sql.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/sql.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/tiff.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/tiff.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/webp.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/webp.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/dictionaries/xml.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/dictionaries/xml.dict -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/COPYING -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/ChangeLog -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/INSTALL -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/QuickStartGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/QuickStartGuide.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/README -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/env_variables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/env_variables.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/historical_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/historical_notes.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/life_pro_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/life_pro_tips.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/notes_for_asan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/notes_for_asan.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/parallel_fuzzing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/parallel_fuzzing.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/perf_tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/perf_tips.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/sister_projects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/sister_projects.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/status_screen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/status_screen.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/technical_details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/technical_details.txt -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/visualization/afl_gzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/visualization/afl_gzip.png -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/bash-cmd-exec.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/bash-cmd-exec.var -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/bash-uninit-mem.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/bash-uninit-mem.var -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/file-fpu-exception.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/file-fpu-exception.elf -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/firefox-bmp-leak.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/firefox-bmp-leak.bmp -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/firefox-gif-leak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/firefox-gif-leak.gif -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/firefox-gif-leak2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/firefox-gif-leak2.gif -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/jxrlib-crash.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/jxrlib-crash.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/jxrlib-crash2.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/jxrlib-crash2.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/jxrlib-crash3.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/jxrlib-crash3.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/jxrlib-crash4.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/jxrlib-crash4.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/libjpeg-sos-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/libjpeg-sos-leak.jpg -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/libtiff-bad-write.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/libtiff-bad-write.tif -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/libtiff-uninit-mem.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/libtiff-uninit-mem.tif -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/libxml2-bad-read.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/libxml2-bad-read.xml -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/msie-dht-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/msie-dht-leak.jpg -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/msie-jxr-mem-leak.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/msie-jxr-mem-leak.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/msie-png-mem-leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/msie-png-mem-leak.png -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/msie-tiff-mem-leak.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/msie-tiff-mem-leak.tif -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/msie-zlib-dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/msie-zlib-dos.png -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/openssl-null-ptr.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/openssl-null-ptr.der -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/openssl-null-ptr2.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/openssl-null-ptr2.der -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/photoshop-mem-leak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/photoshop-mem-leak.jpg -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-bad-free.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-bad-free.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr2.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-bad-ptr3.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr1.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr10.sql: -------------------------------------------------------------------------------- 1 | SELECT fts3_tokenizer(@0()); 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr11.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr12.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr13.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr14.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr15.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr2.sql: -------------------------------------------------------------------------------- 1 | DETACH(select group_concat(q)); 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr3.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr4.sql: -------------------------------------------------------------------------------- 1 | select n()AND+#00; 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr5.sql: -------------------------------------------------------------------------------- 1 | select e.*,0 from(s,(L))e; 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr6.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr7.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t USING fts4(tokenize=); 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr8.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE p(a UNIQUE,PRIMARY KEY('a'))WITHOUT rowid; 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-null-ptr9.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-oob-read.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-oob-read.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-oob-write.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-oob-write.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-stack-exhaustion.sql: -------------------------------------------------------------------------------- 1 | CREATE VIRTUAL TABLE t0 USING fts4(content=t0); 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/sqlite-unint-mem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/sqlite-unint-mem.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/strings-bfd-badptr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/strings-bfd-badptr.elf -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/strings-stack-overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/strings-stack-overflow -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/tcpdump-arp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/tcpdump-arp-crash.pcap -------------------------------------------------------------------------------- /afl/afl-2.52b/docs/vuln_samples/tcpdump-ppp-crash.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/docs/vuln_samples/tcpdump-ppp-crash.pcap -------------------------------------------------------------------------------- /afl/afl-2.52b/experimental/README.experiments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/experimental/README.experiments -------------------------------------------------------------------------------- /afl/afl-2.52b/experimental/clang_asm_normalize/as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/experimental/clang_asm_normalize/as -------------------------------------------------------------------------------- /afl/afl-2.52b/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/hash.h -------------------------------------------------------------------------------- /afl/afl-2.52b/libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libdislocator/Makefile -------------------------------------------------------------------------------- /afl/afl-2.52b/libdislocator/README.dislocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libdislocator/README.dislocator -------------------------------------------------------------------------------- /afl/afl-2.52b/libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /afl/afl-2.52b/libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libtokencap/Makefile -------------------------------------------------------------------------------- /afl/afl-2.52b/libtokencap/README.tokencap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libtokencap/README.tokencap -------------------------------------------------------------------------------- /afl/afl-2.52b/libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /afl/afl-2.52b/llvm_mode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/llvm_mode/Makefile -------------------------------------------------------------------------------- /afl/afl-2.52b/llvm_mode/README.llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/llvm_mode/README.llvm -------------------------------------------------------------------------------- /afl/afl-2.52b/llvm_mode/afl-clang-fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/llvm_mode/afl-clang-fast.c -------------------------------------------------------------------------------- /afl/afl-2.52b/llvm_mode/afl-llvm-pass.so.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/llvm_mode/afl-llvm-pass.so.cc -------------------------------------------------------------------------------- /afl/afl-2.52b/llvm_mode/afl-llvm-rt.o.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/llvm_mode/afl-llvm-rt.o.c -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/README.qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/README.qemu -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/build_qemu_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/build_qemu_support.sh -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/patches/afl-qemu-cpu-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/patches/afl-qemu-cpu-inl.h -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/patches/cpu-exec.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/patches/cpu-exec.diff -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/patches/elfload.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/patches/elfload.diff -------------------------------------------------------------------------------- /afl/afl-2.52b/qemu_mode/patches/syscall.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/qemu_mode/patches/syscall.diff -------------------------------------------------------------------------------- /afl/afl-2.52b/test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/test-instr.c -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/README.testcases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/README.testcases -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/bmp/not_kitty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/bmp/not_kitty.bmp -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/gif/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/gif/not_kitty.gif -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/ico/not_kitty.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/ico/not_kitty.ico -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/jp2/not_kitty.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/jp2/not_kitty.jp2 -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/jpeg/not_kitty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/jpeg/not_kitty.jpg -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/jxr/not_kitty.jxr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/jxr/not_kitty.jxr -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/png/not_kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/png/not_kitty.png -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/png/not_kitty_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/png/not_kitty_alpha.png -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/png/not_kitty_gamma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/png/not_kitty_gamma.png -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/png/not_kitty_icc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/png/not_kitty_icc.png -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/tiff/not_kitty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/tiff/not_kitty.tiff -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/images/webp/not_kitty.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/images/webp/not_kitty.webp -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/elf/small_exec.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/others/elf/small_exec.elf -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/js/small_script.js: -------------------------------------------------------------------------------- 1 | if (1==1) eval('1'); -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/pcap/small_capture.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/others/pcap/small_capture.pcap -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/pdf/small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/others/pdf/small.pdf -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/rtf/small_document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/others/rtf/small_document.rtf -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/sql/simple_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/testcases/others/sql/simple_queries.sql -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/text/hello_world.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/testcases/others/xml/small_document.xml: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /afl/afl-2.52b/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/afl-2.52b/types.h -------------------------------------------------------------------------------- /afl/build-afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/afl/build-afl.sh -------------------------------------------------------------------------------- /etc/libshrink/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.a 3 | *.o 4 | prelink-*/ 5 | -------------------------------------------------------------------------------- /etc/libshrink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/LICENSE -------------------------------------------------------------------------------- /etc/libshrink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/Makefile -------------------------------------------------------------------------------- /etc/libshrink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/README.md -------------------------------------------------------------------------------- /etc/libshrink/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/build.sh -------------------------------------------------------------------------------- /etc/libshrink/ctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/ctor.cpp -------------------------------------------------------------------------------- /etc/libshrink/fix_preinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/fix_preinit.py -------------------------------------------------------------------------------- /etc/libshrink/libpreload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/libpreload.c -------------------------------------------------------------------------------- /etc/libshrink/libstatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/libstatic.c -------------------------------------------------------------------------------- /etc/libshrink/linux_syscall_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/linux_syscall_support.h -------------------------------------------------------------------------------- /etc/libshrink/prelink_binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/prelink_binary.py -------------------------------------------------------------------------------- /etc/libshrink/rpath_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/rpath_wrapper.sh -------------------------------------------------------------------------------- /etc/libshrink/shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/shrink.c -------------------------------------------------------------------------------- /etc/libshrink/shrink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/shrink.h -------------------------------------------------------------------------------- /etc/libshrink/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/test.cpp -------------------------------------------------------------------------------- /etc/libshrink/wrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/etc/libshrink/wrap.sh -------------------------------------------------------------------------------- /fuzzan_autosetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/fuzzan_autosetup.sh -------------------------------------------------------------------------------- /sample/applications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/README.md -------------------------------------------------------------------------------- /sample/applications/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/build.sh -------------------------------------------------------------------------------- /sample/applications/empty-seeds/audiofile/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/binutils/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/c++filt/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/ffmpeg/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/file/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/gif2png/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/lepton/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/libarchive/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/libjpeg/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/libtiff/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/nm/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/objdump/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/openjpeg/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/pngfix/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/size/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/empty-seeds/tcpdump/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/1_run_objdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/1_run_objdump.sh -------------------------------------------------------------------------------- /sample/applications/full-seeds/audiofile/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/binutils/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed1: -------------------------------------------------------------------------------- 1 | _Z14returns_stringB5cxx11v 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed2: -------------------------------------------------------------------------------- 1 | _Z6globalB5cxx11 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed3: -------------------------------------------------------------------------------- 1 | _Z6globalB12a_longer_tag 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed4: -------------------------------------------------------------------------------- 1 | __imp__ZSt6futureIvE 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed5: -------------------------------------------------------------------------------- 1 | ___ZSt1ff_block_invoke 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed6: -------------------------------------------------------------------------------- 1 | _Z1fi 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/c++filt/seed7: -------------------------------------------------------------------------------- 1 | __ZN2ns1fE 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/ffmpeg/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/CVE-2014-1943.testfile: -------------------------------------------------------------------------------- 1 | ER -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/escapevel.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/escapevel.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/gedcom.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/gedcom.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/json1.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/json1.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/json2.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/json2.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/json3.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/json3.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/file/regex-eol.testfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/file/regex-eol.testfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/fuzz/objdump/output/queue/id:000032,orig:fgrep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec grep -F "$@" 3 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/fuzz/objdump/output/queue/id:000139,orig:seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/2x2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/2x2.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/alpha_gif_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/alpha_gif_a.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/anim-gr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/anim-gr.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/beacon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/beacon.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/interlaced.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/interlaced.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/moon_impact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/moon_impact.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/not_kitty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/not_kitty.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/gif2png/sample_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/gif2png/sample_1.gif -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/android.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/android.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/androidcrop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/androidcrop.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/androidtrail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/androidtrail.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/arithmetic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/arithmetic.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/badzerorun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/badzerorun.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/colorswap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/colorswap.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/gold-legacy.lep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/gold-legacy.lep -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/gray2sf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/gray2sf.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/grayscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/grayscale.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/hq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/hq.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/iphone.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/iphone16.lep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/iphone16.lep -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/iphonecity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/iphonecity.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/iphonecrop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/iphonecrop.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/iphonecrop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/iphonecrop2.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/narrowrst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/narrowrst.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/narrowrst.lep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/narrowrst.lep -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/nofsync.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/nofsync.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/slrcity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/slrcity.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/slrhills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/slrhills.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/slrindoor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/slrindoor.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/trailingrst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/trailingrst.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/trailingrst2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/trailingrst2.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/lepton/trunc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/lepton/trunc.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/libarchive/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/libjpeg/testimgari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libjpeg/testimgari.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/libjpeg/testimgint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libjpeg/testimgint.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/libjpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libjpeg/testorig.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/libjpeg/testorig12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libjpeg/testorig12.jpg -------------------------------------------------------------------------------- /sample/applications/full-seeds/libtiff/rgb-3c-16b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libtiff/rgb-3c-16b.tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/libtiff/rgb-3c-8b.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/libtiff/rgb-3c-8b.tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/example.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/example.lib -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/hello.obj.elf-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/hello.obj.elf-i386 -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/hello.obj.elf-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/hello.obj.elf-x86_64 -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus1.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus10.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus10.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus11.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus11.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus12.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus12.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus13.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus14.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus14.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus2.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus3.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus4.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus5.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus5.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus6.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus6.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus7.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus7.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus8.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus8.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/libbogus9.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/libbogus9.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/liblong_filenames.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/liblong_filenames.a -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/macho-dwarf-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/macho-dwarf-x86_64 -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/section-filter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/section-filter.obj -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/test.IRobj-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/test.IRobj-x86_64 -------------------------------------------------------------------------------- /sample/applications/full-seeds/nm/weak.obj.elf-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/nm/weak.obj.elf-x86_64 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/4channels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/4channels -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/aa-enabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/aa-enabled -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/acpi_listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/acpi_listen -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/afl-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/afl-gcc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/afl-gotcpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/afl-gotcpu -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/afl-tmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/afl-tmin -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/apgbfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/apgbfm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/aplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/aplay -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/arm2hpdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/arm2hpdl -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/avahi-resolve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/avahi-resolve -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/baobab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/baobab -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/bitmap -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/bridge -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/btrfs-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/btrfs-convert -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/cdparanoia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/cdparanoia -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/chattr -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/chgrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/chgrp -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/column: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/column -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/compiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/compiz -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/cpp-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/cpp-5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/cups-calibrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/cups-calibrate -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/date -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/dcraw_half: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/dcraw_half -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/devdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/devdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/dpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/dpkg -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/dpkg-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/dpkg-trigger -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/e2fsck -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/esc-m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/esc-m -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fax2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/fax2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fc-conflist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/fc-conflist -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fgrep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec grep -F "$@" 3 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fsck.minix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/fsck.minix -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fstab-decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/fstab-decode -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/fuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/fuser -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gcov-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gcov-5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gcr-viewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gcr-viewer -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gdbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gdbus -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/git-upload-pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/git-upload-pack -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gnome-calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gnome-calendar -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gnome-software: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gnome-software -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gperf -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/groups -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/grub-glue-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/grub-glue-efi -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gtester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gtester -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/gvfs-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/gvfs-move -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ibus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ibus -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ico -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/id -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ilbmtoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ilbmtoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/imgcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/imgcmp -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/info -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/intel-gen4asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/intel-gen4asm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/intel_gtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/intel_gtt -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/intel_watermark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/intel_watermark -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ionice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ionice -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ipcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ipcs -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/isovfy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/isovfy -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/iwconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/iwconfig -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/j2amidi_bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/j2amidi_bridge -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jack-osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jack-osc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jack-play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jack-play -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jack-stdin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jack-stdin -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jade -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jasper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jasper -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/jpegtran -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/link -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/linkicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/linkicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ln -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/losetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/losetup -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/lscpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/lscpu -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/lsipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/lsipc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/luac5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/luac5.1 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/luac50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/luac50 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/lvmpolld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/lvmpolld -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/makecsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/makecsd -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mawk -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mem_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mem_image -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mkfs.xfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mkfs.xfs -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mkreiserfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mkreiserfs -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mmcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mmcli -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mp3gain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mp3gain -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/mpg123-id3dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/mpg123-id3dump -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/msgcomm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/msgcomm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/msgexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/msgexec -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/msgmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/msgmerge -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/nameif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/nameif -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/nm-applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/nm-applet -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/nohup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/nohup -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/nsgmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/nsgmls -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/numfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/numfmt -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ogginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ogginfo -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/orte-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/orte-server -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pactl -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pbmtextps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pbmtextps -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pbmtoepsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pbmtoepsi -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pccardctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pccardctl -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pdftocairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pdftocairo -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pdftohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pdftohtml -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pdftops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pdftops -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pg -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pgmcrater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pgmcrater -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pgmtopbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pgmtopbm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ping6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ping6 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pjtoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pjtoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/plipconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/plipconfig -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmalias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmalias -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmconvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmconvol -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmpsnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmpsnr -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmremap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmremap -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmscalefixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmscalefixed -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmtorle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmtorle -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pnmtosgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pnmtosgi -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppm2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppm2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppmlabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppmlabel -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppmntsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppmntsc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppmtoleaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppmtoleaf -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppmtopuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppmtopuzz -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ppmtotga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ppmtotga -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/printerbanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/printerbanner -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/psfxtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/psfxtable -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/psicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/psicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/pylupdate5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/pylupdate5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/raw-identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/raw-identify -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/raw2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/raw2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/rdjpgcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/rdjpgcom -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/reiserfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/reiserfsck -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/reiserfstune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/reiserfstune -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/resize -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sbattach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sbattach -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sbigtopgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sbigtopgm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sbsiglist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sbsiglist -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sdiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sessreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sessreg -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/setfattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/setfattr -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sgitopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sgitopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sgml2xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sgml2xml -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sha1sum -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/signon-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/signon-ui -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/simple_dcraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/simple_dcraw -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/sleep -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/spam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/spam -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/spent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/spent -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/split -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/srconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/srconv -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/stk-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/stk-demo -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svnadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svnadmin -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svnauthz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svnauthz -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svndumpfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svndumpfilter -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svnlook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svnlook -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svnrdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svnrdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/svnserve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/svnserve -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/synclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/synclient -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/telnet.netkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/telnet.netkit -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tgatoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tgatoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiff2pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiff2pdf -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiff2rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiff2rgba -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiffcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiffcp -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiffcrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiffcrop -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiffdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiffdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiffmedian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiffmedian -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tiffsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tiffsplit -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tifftopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tifftopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/toilet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/toilet -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/tolua++5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/tolua++5.1 -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/transicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/transicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/true -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/ul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/ul -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/unlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/unlink -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/unprocessed_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/unprocessed_raw -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/uuid -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/vdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/vdir -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/watch -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xbiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xbiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xditview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xditview -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xfs_repair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xfs_repair -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xkbbell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xkbbell -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xkbprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xkbprint -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xkbvleds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xkbvleds -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xlsclients: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xlsclients -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xrandr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xrandr -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xwdtopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xwdtopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/xwininfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/xwininfo -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/yelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/yelp -------------------------------------------------------------------------------- /sample/applications/full-seeds/objdump/zdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/objdump/zdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file1.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file2.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file2.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file3.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file3.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file4.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file4.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file5.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file5.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file6.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file6.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file7.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file7.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file8.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file8.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/file9.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/file9.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_01.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_01.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_02.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_02.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_03.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_03.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_04.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_04.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_05.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_05.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_06.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_06.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_07.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_07.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_08.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_08.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_09.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_09.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_10.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_10.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_11.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_11.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_12.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_12.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_13.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_13.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_14.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_14.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_15.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_15.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p0_16.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p0_16.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_01.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_01.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_02.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_02.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_03.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_03.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_04.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_04.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_05.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_05.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_06.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_06.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/p1_07.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/p1_07.j2k -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/zoo1.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/zoo1.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/openjpeg/zoo2.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/openjpeg/zoo2.jp2 -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/VisualPng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/VisualPng.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn0g01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn0g02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn0g04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn0g08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn0g16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn3p01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn3p02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn3p04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn4a08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn4a16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn6a08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/basn6a16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbbn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbbn0g01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbbn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbbn0g02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbbn0g04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbbn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbbn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbgn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbgn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbrn2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbwn0g16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbwn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftbyn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftp0n0g08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftp0n2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftp0n3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ftp1n3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-1-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-1-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-1-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-1-sRGB.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-1-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-1-tRNS.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-1.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-16-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-16-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-16-sRGB.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-16-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-16-tRNS.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-2-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-2-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-2-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-2-sRGB.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-2-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-2-tRNS.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-2.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-4-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-4-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-4-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-4-sRGB.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-4-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-4-tRNS.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-4.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-8-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-8-sRGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-8-sRGB.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-8-tRNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-8-tRNS.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/gray-alpha-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/gray-alpha-8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn0g01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn0g02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn0g04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn0g08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn0g16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn3p01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn3p02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn3p04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn4a08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn4a16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn6a08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/ibasn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/ibasn6a16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbbn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbbn0g01.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbbn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbbn0g02.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbbn0g04.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbbn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbbn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbgn2c16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbgn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbrn2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbwn0g16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbwn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftbyn3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftp0n0g08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftp0n2c08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftp0n3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/iftp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/iftp1n3p08.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/palette-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/palette-1.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/palette-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/palette-2.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/palette-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/palette-4.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/palette-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/palette-8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/pngbar.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/pngnow.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/pngtest.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/rgb-16-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/rgb-16-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/rgb-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/rgb-16.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/rgb-8-1.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/rgb-8-1.8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/rgb-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/rgb-8.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/pngfix/toucan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/pngfix/toucan.png -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/4channels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/4channels -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/aa-enabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/aa-enabled -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/acpi_listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/acpi_listen -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/afl-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/afl-gcc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/afl-gotcpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/afl-gotcpu -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/afl-tmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/afl-tmin -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/apgbfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/apgbfm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/aplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/aplay -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/arm2hpdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/arm2hpdl -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/avahi-resolve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/avahi-resolve -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/baobab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/baobab -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/bitmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/bitmap -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/bridge -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/btrfs-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/btrfs-convert -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/cdparanoia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/cdparanoia -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/chattr -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/chgrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/chgrp -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/column: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/column -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/compiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/compiz -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/cpp-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/cpp-5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/cups-calibrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/cups-calibrate -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/date -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/dcraw_half: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/dcraw_half -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/devdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/devdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/dpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/dpkg -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/dpkg-trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/dpkg-trigger -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/e2fsck -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/esc-m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/esc-m -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fax2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/fax2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fc-conflist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/fc-conflist -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fgrep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec grep -F "$@" 3 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fsck.minix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/fsck.minix -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fstab-decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/fstab-decode -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/fuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/fuser -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gcov-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gcov-5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gcr-viewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gcr-viewer -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gdbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gdbus -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/git-upload-pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/git-upload-pack -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gnome-calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gnome-calendar -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gnome-software: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gnome-software -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gperf -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/groups -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/grub-glue-efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/grub-glue-efi -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gtester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gtester -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/gvfs-move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/gvfs-move -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ibus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ibus -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ico -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/id -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ilbmtoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ilbmtoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/imgcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/imgcmp -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/info -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/intel-gen4asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/intel-gen4asm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/intel_gtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/intel_gtt -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/intel_watermark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/intel_watermark -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ionice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ionice -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ipcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ipcs -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/isovfy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/isovfy -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/iwconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/iwconfig -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/j2amidi_bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/j2amidi_bridge -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jack-osc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jack-osc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jack-play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jack-play -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jack-stdin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jack-stdin -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jade -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jasper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jasper -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/jpegtran -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/link -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/linkicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/linkicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ln -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/losetup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/losetup -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/lscpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/lscpu -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/lsipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/lsipc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/luac5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/luac5.1 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/luac50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/luac50 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/lvmpolld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/lvmpolld -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/makecsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/makecsd -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mawk -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mem_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mem_image -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mkfs.xfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mkfs.xfs -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mkreiserfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mkreiserfs -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mmcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mmcli -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mp3gain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mp3gain -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/mpg123-id3dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/mpg123-id3dump -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/msgcomm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/msgcomm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/msgexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/msgexec -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/msgmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/msgmerge -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/nameif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/nameif -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/nm-applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/nm-applet -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/nohup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/nohup -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/nsgmls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/nsgmls -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/numfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/numfmt -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ogginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ogginfo -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/orte-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/orte-server -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pactl -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pbmtextps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pbmtextps -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pbmtoepsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pbmtoepsi -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pccardctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pccardctl -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pdftocairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pdftocairo -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pdftohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pdftohtml -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pdftops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pdftops -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pg -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pgmcrater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pgmcrater -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pgmtopbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pgmtopbm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ping6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ping6 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pjtoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pjtoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/plipconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/plipconfig -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmalias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmalias -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmconvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmconvol -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmfile -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmpsnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmpsnr -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmremap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmremap -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmscalefixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmscalefixed -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmtorle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmtorle -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pnmtosgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pnmtosgi -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppm2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppm2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppmlabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppmlabel -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppmntsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppmntsc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppmtoleaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppmtoleaf -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppmtopuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppmtopuzz -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ppmtotga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ppmtotga -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/printerbanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/printerbanner -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/psfxtable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/psfxtable -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/psicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/psicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/pylupdate5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/pylupdate5 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/raw-identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/raw-identify -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/raw2tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/raw2tiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/rdjpgcom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/rdjpgcom -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/reiserfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/reiserfsck -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/reiserfstune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/reiserfstune -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/resize -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sbattach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sbattach -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sbigtopgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sbigtopgm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sbsiglist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sbsiglist -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sdiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/seed: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sessreg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sessreg -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/setfattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/setfattr -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sgitopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sgitopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sgml2xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sgml2xml -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sha1sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sha1sum -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/signon-ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/signon-ui -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/simple_dcraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/simple_dcraw -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/sleep -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/spam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/spam -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/spent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/spent -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/split -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/srconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/srconv -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/stk-demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/stk-demo -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svnadmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svnadmin -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svnauthz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svnauthz -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svndumpfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svndumpfilter -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svnlook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svnlook -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svnrdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svnrdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/svnserve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/svnserve -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/synclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/synclient -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/telnet.netkit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/telnet.netkit -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tgatoppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tgatoppm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiff2pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiff2pdf -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiff2rgba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiff2rgba -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiffcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiffcp -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiffcrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiffcrop -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiffdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiffdump -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiffmedian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiffmedian -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tiffsplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tiffsplit -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tifftopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tifftopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/toilet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/toilet -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/tolua++5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/tolua++5.1 -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/transicc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/transicc -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/true: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/true -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/ul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/ul -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/unlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/unlink -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/unprocessed_raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/unprocessed_raw -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/uuid -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/vdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/vdir -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/watch -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xbiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xbiff -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xditview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xditview -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xfs_repair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xfs_repair -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xkbbell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xkbbell -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xkbprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xkbprint -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xkbvleds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xkbvleds -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xlsclients: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xlsclients -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xrandr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xrandr -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xwdtopnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xwdtopnm -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/xwininfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/xwininfo -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/yelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/yelp -------------------------------------------------------------------------------- /sample/applications/full-seeds/size/zdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/full-seeds/size/zdump -------------------------------------------------------------------------------- /sample/applications/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/run.sh -------------------------------------------------------------------------------- /sample/applications/testsuite/binutils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/testsuite/binutils/build.sh -------------------------------------------------------------------------------- /sample/applications/testsuite/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/testsuite/common.sh -------------------------------------------------------------------------------- /sample/applications/testsuite/file/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/testsuite/file/build.sh -------------------------------------------------------------------------------- /sample/applications/testsuite/libpng/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/testsuite/libpng/build.sh -------------------------------------------------------------------------------- /sample/applications/testsuite/tcpdump/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/applications/testsuite/tcpdump/build.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/google-fuzzer-test-suite/README.md -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-asan-mopt/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-asan/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-fuzzan/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-min-mopt/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-min/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-msan/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fts-native/build_target_program.sh: -------------------------------------------------------------------------------- 1 | ../build_target_program.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fuzzer-test-suite/llvm-libcxxabi-2017-01-27/crash-3edc48212829c58f0e19e2f0ef7eec46ffd6bca9: -------------------------------------------------------------------------------- 1 | ZUlSaIJT_1_EET_E5 -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/base_template/fuzzer-test-suite/re2-2014-12-09/crash-a23ed2a04358b9c070c603a5af6ae2b34598664a: -------------------------------------------------------------------------------- 1 | '(.*|.{816}{21}) -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/google-fuzzer-test-suite/build.sh -------------------------------------------------------------------------------- /sample/google-fuzzer-test-suite/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HexHive/FuZZan/HEAD/sample/google-fuzzer-test-suite/run.sh --------------------------------------------------------------------------------