├── .gdbinit ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RPCBIND ├── 2 ├── .gitignore ├── CVE-2019-9865 │ ├── crash.png │ ├── pkt │ └── poc.py ├── graph │ ├── exec_speed.png │ ├── high_freq.png │ ├── index.html │ └── low_freq.png ├── input │ ├── 2 │ ├── 3 │ └── i └── poc.py ├── 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 ├── avatar2 ├── __init__.py ├── archs │ ├── __init__.py │ ├── architecture.py │ ├── arm.py │ └── x86.py ├── avatar2.py ├── installer │ ├── __init__.py │ ├── __main__.py │ ├── avatar2_installer.py │ └── config.py ├── memory_range.py ├── message.py ├── peripherals │ ├── __init__.py │ ├── avatar_peripheral.py │ ├── max32_usart.py │ └── nucleo_usart.py ├── plugins │ ├── __init__.py │ ├── arm │ │ ├── __init__.py │ │ ├── armv7m_interrupts.py │ │ ├── coresight_finder.py │ │ └── svd_mapper.py │ ├── assembler.py │ ├── disassembler.py │ ├── gdb_memory_map_loader.py │ ├── instruction_forwarder.py │ └── orchestrator.py ├── protocols │ ├── __init__.py │ ├── armv7m_interrupt.py │ ├── coresight.py │ ├── gdb.py │ ├── jlink.py │ ├── openocd.py │ ├── qmp.py │ ├── remote_memory.py │ └── unicorn_protocol.py ├── targets │ ├── __init__.py │ ├── dummy_target.py │ ├── gdb_target.py │ ├── jlink_target.py │ ├── openocd_target.py │ ├── panda_target.py │ ├── qemu_target.py │ ├── target.py │ └── unicorn_target.py └── watchmen.py ├── config.h ├── debug.h ├── doc ├── AFL源码阅读.md ├── linux笔记.md ├── packet_socket漏洞.md ├── qemu笔记.md ├── syzkaller使用记录.md └── vxWorks.md ├── example ├── graph2 │ ├── exec_speed.png │ ├── high_freq.png │ ├── index.html │ └── low_freq.png └── graph_dir │ ├── exec_speed.png │ ├── high_freq.png │ ├── index.html │ ├── index.html.orig │ └── low_freq.png ├── get_module_addr.sh ├── hash.h ├── libdislocator ├── Makefile ├── README.dislocator └── libdislocator.so.c ├── libtokencap ├── Makefile ├── README.tokencap └── libtokencap.so.c ├── run-linux.sh ├── run.sh ├── running_time.txt ├── tap.sh ├── test-instr.c ├── test-libfuzzer-target.c ├── test.c ├── test_input.txt ├── types.h ├── vxAFL运行.png └── vxafl.py /.gdbinit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/README.md -------------------------------------------------------------------------------- /RPCBIND/.gitignore: -------------------------------------------------------------------------------- 1 | output -------------------------------------------------------------------------------- /RPCBIND/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/2 -------------------------------------------------------------------------------- /RPCBIND/CVE-2019-9865/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/CVE-2019-9865/crash.png -------------------------------------------------------------------------------- /RPCBIND/CVE-2019-9865/pkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/CVE-2019-9865/pkt -------------------------------------------------------------------------------- /RPCBIND/CVE-2019-9865/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/CVE-2019-9865/poc.py -------------------------------------------------------------------------------- /RPCBIND/graph/exec_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/graph/exec_speed.png -------------------------------------------------------------------------------- /RPCBIND/graph/high_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/graph/high_freq.png -------------------------------------------------------------------------------- /RPCBIND/graph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/graph/index.html -------------------------------------------------------------------------------- /RPCBIND/graph/low_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/graph/low_freq.png -------------------------------------------------------------------------------- /RPCBIND/input/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/input/2 -------------------------------------------------------------------------------- /RPCBIND/input/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/input/3 -------------------------------------------------------------------------------- /RPCBIND/input/i: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /RPCBIND/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/RPCBIND/poc.py -------------------------------------------------------------------------------- /afl-analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-analyze.c -------------------------------------------------------------------------------- /afl-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-as.c -------------------------------------------------------------------------------- /afl-as.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-as.h -------------------------------------------------------------------------------- /afl-cmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-cmin -------------------------------------------------------------------------------- /afl-fuzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-fuzz.c -------------------------------------------------------------------------------- /afl-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-gcc.c -------------------------------------------------------------------------------- /afl-gotcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-gotcpu.c -------------------------------------------------------------------------------- /afl-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-plot -------------------------------------------------------------------------------- /afl-showmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-showmap.c -------------------------------------------------------------------------------- /afl-tmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-tmin.c -------------------------------------------------------------------------------- /afl-whatsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/afl-whatsup -------------------------------------------------------------------------------- /alloc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/alloc-inl.h -------------------------------------------------------------------------------- /avatar2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/__init__.py -------------------------------------------------------------------------------- /avatar2/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/archs/__init__.py -------------------------------------------------------------------------------- /avatar2/archs/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/archs/architecture.py -------------------------------------------------------------------------------- /avatar2/archs/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/archs/arm.py -------------------------------------------------------------------------------- /avatar2/archs/x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/archs/x86.py -------------------------------------------------------------------------------- /avatar2/avatar2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/avatar2.py -------------------------------------------------------------------------------- /avatar2/installer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avatar2/installer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/installer/__main__.py -------------------------------------------------------------------------------- /avatar2/installer/avatar2_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/installer/avatar2_installer.py -------------------------------------------------------------------------------- /avatar2/installer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/installer/config.py -------------------------------------------------------------------------------- /avatar2/memory_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/memory_range.py -------------------------------------------------------------------------------- /avatar2/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/message.py -------------------------------------------------------------------------------- /avatar2/peripherals/__init__.py: -------------------------------------------------------------------------------- 1 | from .avatar_peripheral import * 2 | 3 | -------------------------------------------------------------------------------- /avatar2/peripherals/avatar_peripheral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/peripherals/avatar_peripheral.py -------------------------------------------------------------------------------- /avatar2/peripherals/max32_usart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/peripherals/max32_usart.py -------------------------------------------------------------------------------- /avatar2/peripherals/nucleo_usart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/peripherals/nucleo_usart.py -------------------------------------------------------------------------------- /avatar2/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avatar2/plugins/arm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avatar2/plugins/arm/armv7m_interrupts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/arm/armv7m_interrupts.py -------------------------------------------------------------------------------- /avatar2/plugins/arm/coresight_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/arm/coresight_finder.py -------------------------------------------------------------------------------- /avatar2/plugins/arm/svd_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/arm/svd_mapper.py -------------------------------------------------------------------------------- /avatar2/plugins/assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/assembler.py -------------------------------------------------------------------------------- /avatar2/plugins/disassembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/disassembler.py -------------------------------------------------------------------------------- /avatar2/plugins/gdb_memory_map_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/gdb_memory_map_loader.py -------------------------------------------------------------------------------- /avatar2/plugins/instruction_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/instruction_forwarder.py -------------------------------------------------------------------------------- /avatar2/plugins/orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/plugins/orchestrator.py -------------------------------------------------------------------------------- /avatar2/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avatar2/protocols/armv7m_interrupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/armv7m_interrupt.py -------------------------------------------------------------------------------- /avatar2/protocols/coresight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/coresight.py -------------------------------------------------------------------------------- /avatar2/protocols/gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/gdb.py -------------------------------------------------------------------------------- /avatar2/protocols/jlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/jlink.py -------------------------------------------------------------------------------- /avatar2/protocols/openocd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/openocd.py -------------------------------------------------------------------------------- /avatar2/protocols/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/qmp.py -------------------------------------------------------------------------------- /avatar2/protocols/remote_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/remote_memory.py -------------------------------------------------------------------------------- /avatar2/protocols/unicorn_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/protocols/unicorn_protocol.py -------------------------------------------------------------------------------- /avatar2/targets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/__init__.py -------------------------------------------------------------------------------- /avatar2/targets/dummy_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/dummy_target.py -------------------------------------------------------------------------------- /avatar2/targets/gdb_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/gdb_target.py -------------------------------------------------------------------------------- /avatar2/targets/jlink_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/jlink_target.py -------------------------------------------------------------------------------- /avatar2/targets/openocd_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/openocd_target.py -------------------------------------------------------------------------------- /avatar2/targets/panda_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/panda_target.py -------------------------------------------------------------------------------- /avatar2/targets/qemu_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/qemu_target.py -------------------------------------------------------------------------------- /avatar2/targets/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/target.py -------------------------------------------------------------------------------- /avatar2/targets/unicorn_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/targets/unicorn_target.py -------------------------------------------------------------------------------- /avatar2/watchmen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/avatar2/watchmen.py -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/config.h -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/debug.h -------------------------------------------------------------------------------- /doc/AFL源码阅读.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/AFL源码阅读.md -------------------------------------------------------------------------------- /doc/linux笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/linux笔记.md -------------------------------------------------------------------------------- /doc/packet_socket漏洞.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/packet_socket漏洞.md -------------------------------------------------------------------------------- /doc/qemu笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/qemu笔记.md -------------------------------------------------------------------------------- /doc/syzkaller使用记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/syzkaller使用记录.md -------------------------------------------------------------------------------- /doc/vxWorks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/doc/vxWorks.md -------------------------------------------------------------------------------- /example/graph2/exec_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph2/exec_speed.png -------------------------------------------------------------------------------- /example/graph2/high_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph2/high_freq.png -------------------------------------------------------------------------------- /example/graph2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph2/index.html -------------------------------------------------------------------------------- /example/graph2/low_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph2/low_freq.png -------------------------------------------------------------------------------- /example/graph_dir/exec_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph_dir/exec_speed.png -------------------------------------------------------------------------------- /example/graph_dir/high_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph_dir/high_freq.png -------------------------------------------------------------------------------- /example/graph_dir/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph_dir/index.html -------------------------------------------------------------------------------- /example/graph_dir/index.html.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph_dir/index.html.orig -------------------------------------------------------------------------------- /example/graph_dir/low_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/example/graph_dir/low_freq.png -------------------------------------------------------------------------------- /get_module_addr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/get_module_addr.sh -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/hash.h -------------------------------------------------------------------------------- /libdislocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libdislocator/Makefile -------------------------------------------------------------------------------- /libdislocator/README.dislocator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libdislocator/README.dislocator -------------------------------------------------------------------------------- /libdislocator/libdislocator.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libdislocator/libdislocator.so.c -------------------------------------------------------------------------------- /libtokencap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libtokencap/Makefile -------------------------------------------------------------------------------- /libtokencap/README.tokencap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libtokencap/README.tokencap -------------------------------------------------------------------------------- /libtokencap/libtokencap.so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/libtokencap/libtokencap.so.c -------------------------------------------------------------------------------- /run-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/run-linux.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/run.sh -------------------------------------------------------------------------------- /running_time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/running_time.txt -------------------------------------------------------------------------------- /tap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/tap.sh -------------------------------------------------------------------------------- /test-instr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/test-instr.c -------------------------------------------------------------------------------- /test-libfuzzer-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/test-libfuzzer-target.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_input.txt: -------------------------------------------------------------------------------- 1 | A321 -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/types.h -------------------------------------------------------------------------------- /vxAFL运行.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/vxAFL运行.png -------------------------------------------------------------------------------- /vxafl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssdemajia/vxafl/HEAD/vxafl.py --------------------------------------------------------------------------------