├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── README.md ├── coverage_analysis.md ├── crash_analysis.md ├── fuzzware_utils.md ├── manipulating_inputs.md └── target_configuration.md ├── examples ├── P2IM │ ├── CNC │ │ ├── CNC.bin │ │ ├── CNC.elf │ │ ├── base_inputs │ │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Console │ │ ├── Console.bin │ │ ├── Console.elf │ │ ├── base_inputs │ │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Drone │ │ ├── Drone.bin │ │ ├── Drone.elf │ │ ├── base_inputs │ │ │ └── ex1 │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Gateway │ │ ├── Gateway.bin │ │ ├── Gateway.elf │ │ ├── base_inputs │ │ │ └── ex7_new │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Heat_Press │ │ ├── Heat_Press.bin │ │ ├── Heat_Press.elf │ │ ├── base_inputs │ │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── PLC │ │ ├── PLC.bin │ │ ├── PLC.elf │ │ ├── base_inputs │ │ │ └── modbus_cmd3 │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Reflow_Oven │ │ ├── Reflow_Oven.bin │ │ ├── Reflow_Oven.elf │ │ ├── base_inputs │ │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Robot │ │ ├── Robot.bin │ │ ├── Robot.elf │ │ ├── base_inputs │ │ │ └── ex7_new │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ ├── Soldering_Iron │ │ ├── Soldering_Iron.bin │ │ ├── Soldering_Iron.elf │ │ ├── base_inputs │ │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt │ └── Steering_Control │ │ ├── Steering_Control.bin │ │ ├── Steering_Control.elf │ │ ├── base_inputs │ │ └── random │ │ ├── config.yml │ │ ├── syms.yml │ │ └── valid_basic_blocks.txt ├── configs │ ├── fuzzing │ │ └── round_robin_interrupts.yml │ └── hw │ │ ├── boards │ │ ├── MK64FN1M0VLL12.yml │ │ ├── SAM3X8E.yml │ │ ├── STM32F103RB.yml │ │ ├── STM32F429ZI.yml │ │ ├── STM32f746zg.yml │ │ ├── atsamr21_xpro.yml │ │ ├── disco_l475_iot1.yml │ │ ├── nrf52840_pca10056.yml │ │ └── nrf52_pca10040.yml │ │ └── cortexm_memory.yml └── pw-recovery │ ├── ARCH_PRO │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── EFM32GG_STK3700 │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── EFM32LG_STK3600 │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── LPC1549 │ ├── LPC15XX_datasheet.pdf │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── LPC1768 │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── MOTE_L152RC │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── NUCLEO_F103RB │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── NUCLEO_F207ZG │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ ├── NUCLEO_L152RE │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt │ └── UBLOX_C027 │ ├── basic_exercises.bin │ ├── basic_exercises.elf │ ├── config.yml │ ├── syms.yml │ └── valid_basic_blocks.txt ├── install_local.sh ├── modeling ├── fuzzware_model.py ├── fuzzware_modeling │ ├── __init__.py │ ├── analyze_mmio.py │ ├── angr_utils.py │ ├── arch_specific │ │ ├── __init__.py │ │ ├── arm_cortexm_mmio_ranges.py │ │ ├── arm_thumb_quirks.py │ │ └── arm_thumb_regs.py │ ├── base_state_snapshot.py │ ├── exploration_techniques.py │ ├── fuzzware_utils │ │ ├── __init__.py │ │ ├── config.py │ │ ├── persist_results.py │ │ └── trace_serialization.py │ ├── inspect_breakpoints.py │ ├── liveness_plugin.py │ ├── logging_utils.py │ ├── model_detection.py │ └── rq_worker.py ├── requirements.txt ├── setup.py └── setup.sh ├── run_docker.sh ├── scripts ├── cartographer_cov_conversion.py ├── idapython │ ├── idapy_detect_exitats.py │ ├── idapy_dump_symbols_yml.py │ └── idapy_dump_valid_basic_block_list.py └── set_inotify_limits.sh ├── ubuntu_install_docker.sh └── update.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/coverage_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/coverage_analysis.md -------------------------------------------------------------------------------- /docs/crash_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/crash_analysis.md -------------------------------------------------------------------------------- /docs/fuzzware_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/fuzzware_utils.md -------------------------------------------------------------------------------- /docs/manipulating_inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/manipulating_inputs.md -------------------------------------------------------------------------------- /docs/target_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/docs/target_configuration.md -------------------------------------------------------------------------------- /examples/P2IM/CNC/CNC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/CNC.bin -------------------------------------------------------------------------------- /examples/P2IM/CNC/CNC.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/CNC.elf -------------------------------------------------------------------------------- /examples/P2IM/CNC/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/CNC/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/config.yml -------------------------------------------------------------------------------- /examples/P2IM/CNC/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/CNC/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/CNC/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Console/Console.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/Console.bin -------------------------------------------------------------------------------- /examples/P2IM/Console/Console.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/Console.elf -------------------------------------------------------------------------------- /examples/P2IM/Console/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/Console/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Console/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Console/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Console/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Drone/Drone.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/Drone.bin -------------------------------------------------------------------------------- /examples/P2IM/Drone/Drone.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/Drone.elf -------------------------------------------------------------------------------- /examples/P2IM/Drone/base_inputs/ex1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/base_inputs/ex1 -------------------------------------------------------------------------------- /examples/P2IM/Drone/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Drone/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Drone/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Drone/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Gateway/Gateway.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/Gateway.bin -------------------------------------------------------------------------------- /examples/P2IM/Gateway/Gateway.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/Gateway.elf -------------------------------------------------------------------------------- /examples/P2IM/Gateway/base_inputs/ex7_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/base_inputs/ex7_new -------------------------------------------------------------------------------- /examples/P2IM/Gateway/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Gateway/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Gateway/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Gateway/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/Heat_Press.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/Heat_Press.bin -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/Heat_Press.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/Heat_Press.elf -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Heat_Press/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Heat_Press/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/PLC/PLC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/PLC.bin -------------------------------------------------------------------------------- /examples/P2IM/PLC/PLC.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/PLC.elf -------------------------------------------------------------------------------- /examples/P2IM/PLC/base_inputs/modbus_cmd3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/base_inputs/modbus_cmd3 -------------------------------------------------------------------------------- /examples/P2IM/PLC/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/config.yml -------------------------------------------------------------------------------- /examples/P2IM/PLC/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/PLC/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/PLC/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/Reflow_Oven.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/Reflow_Oven.bin -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/Reflow_Oven.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/Reflow_Oven.elf -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Reflow_Oven/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Reflow_Oven/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Robot/Robot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/Robot.bin -------------------------------------------------------------------------------- /examples/P2IM/Robot/Robot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/Robot.elf -------------------------------------------------------------------------------- /examples/P2IM/Robot/base_inputs/ex7_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/base_inputs/ex7_new -------------------------------------------------------------------------------- /examples/P2IM/Robot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Robot/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Robot/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Robot/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/Soldering_Iron.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/Soldering_Iron.bin -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/Soldering_Iron.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/Soldering_Iron.elf -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Soldering_Iron/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Soldering_Iron/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/Steering_Control.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/Steering_Control.bin -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/Steering_Control.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/Steering_Control.elf -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/base_inputs/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/base_inputs/random -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/config.yml -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/syms.yml -------------------------------------------------------------------------------- /examples/P2IM/Steering_Control/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/P2IM/Steering_Control/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/configs/fuzzing/round_robin_interrupts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/fuzzing/round_robin_interrupts.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/MK64FN1M0VLL12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/MK64FN1M0VLL12.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/SAM3X8E.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/SAM3X8E.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/STM32F103RB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/STM32F103RB.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/STM32F429ZI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/STM32F429ZI.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/STM32f746zg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/STM32f746zg.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/atsamr21_xpro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/atsamr21_xpro.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/disco_l475_iot1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/disco_l475_iot1.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/nrf52840_pca10056.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - ./nrf52_pca10040.yml -------------------------------------------------------------------------------- /examples/configs/hw/boards/nrf52_pca10040.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/boards/nrf52_pca10040.yml -------------------------------------------------------------------------------- /examples/configs/hw/cortexm_memory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/configs/hw/cortexm_memory.yml -------------------------------------------------------------------------------- /examples/pw-recovery/ARCH_PRO/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/ARCH_PRO/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/ARCH_PRO/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/ARCH_PRO/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/ARCH_PRO/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/ARCH_PRO/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/ARCH_PRO/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/ARCH_PRO/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/ARCH_PRO/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/ARCH_PRO/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32GG_STK3700/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32GG_STK3700/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32GG_STK3700/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32GG_STK3700/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32GG_STK3700/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32GG_STK3700/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32GG_STK3700/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32GG_STK3700/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32GG_STK3700/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32GG_STK3700/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32LG_STK3600/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32LG_STK3600/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32LG_STK3600/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32LG_STK3600/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32LG_STK3600/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32LG_STK3600/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32LG_STK3600/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32LG_STK3600/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/EFM32LG_STK3600/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/EFM32LG_STK3600/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/LPC15XX_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/LPC15XX_datasheet.pdf -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1549/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1549/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1768/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1768/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1768/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1768/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1768/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1768/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1768/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1768/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/LPC1768/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/LPC1768/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/MOTE_L152RC/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/MOTE_L152RC/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/MOTE_L152RC/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/MOTE_L152RC/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/MOTE_L152RC/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/MOTE_L152RC/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/MOTE_L152RC/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/MOTE_L152RC/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/MOTE_L152RC/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/MOTE_L152RC/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F103RB/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F103RB/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F103RB/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F103RB/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F103RB/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F103RB/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F103RB/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F103RB/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F103RB/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F103RB/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F207ZG/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F207ZG/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F207ZG/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F207ZG/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F207ZG/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F207ZG/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F207ZG/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F207ZG/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_F207ZG/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_F207ZG/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_L152RE/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_L152RE/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_L152RE/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_L152RE/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_L152RE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_L152RE/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_L152RE/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_L152RE/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/NUCLEO_L152RE/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/NUCLEO_L152RE/valid_basic_blocks.txt -------------------------------------------------------------------------------- /examples/pw-recovery/UBLOX_C027/basic_exercises.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/UBLOX_C027/basic_exercises.bin -------------------------------------------------------------------------------- /examples/pw-recovery/UBLOX_C027/basic_exercises.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/UBLOX_C027/basic_exercises.elf -------------------------------------------------------------------------------- /examples/pw-recovery/UBLOX_C027/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/UBLOX_C027/config.yml -------------------------------------------------------------------------------- /examples/pw-recovery/UBLOX_C027/syms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/UBLOX_C027/syms.yml -------------------------------------------------------------------------------- /examples/pw-recovery/UBLOX_C027/valid_basic_blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/examples/pw-recovery/UBLOX_C027/valid_basic_blocks.txt -------------------------------------------------------------------------------- /install_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/install_local.sh -------------------------------------------------------------------------------- /modeling/fuzzware_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_model.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/__init__.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/analyze_mmio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/analyze_mmio.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/angr_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/angr_utils.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/arch_specific/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/arch_specific/arm_cortexm_mmio_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/arch_specific/arm_cortexm_mmio_ranges.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/arch_specific/arm_thumb_quirks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/arch_specific/arm_thumb_quirks.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/arch_specific/arm_thumb_regs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/arch_specific/arm_thumb_regs.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/base_state_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/base_state_snapshot.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/exploration_techniques.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/exploration_techniques.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/fuzzware_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/fuzzware_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/fuzzware_utils/config.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/fuzzware_utils/persist_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/fuzzware_utils/persist_results.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/fuzzware_utils/trace_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/fuzzware_utils/trace_serialization.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/inspect_breakpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/inspect_breakpoints.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/liveness_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/liveness_plugin.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/logging_utils.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/model_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/model_detection.py -------------------------------------------------------------------------------- /modeling/fuzzware_modeling/rq_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/fuzzware_modeling/rq_worker.py -------------------------------------------------------------------------------- /modeling/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/requirements.txt -------------------------------------------------------------------------------- /modeling/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/setup.py -------------------------------------------------------------------------------- /modeling/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/modeling/setup.sh -------------------------------------------------------------------------------- /run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/run_docker.sh -------------------------------------------------------------------------------- /scripts/cartographer_cov_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/scripts/cartographer_cov_conversion.py -------------------------------------------------------------------------------- /scripts/idapython/idapy_detect_exitats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/scripts/idapython/idapy_detect_exitats.py -------------------------------------------------------------------------------- /scripts/idapython/idapy_dump_symbols_yml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/scripts/idapython/idapy_dump_symbols_yml.py -------------------------------------------------------------------------------- /scripts/idapython/idapy_dump_valid_basic_block_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/scripts/idapython/idapy_dump_valid_basic_block_list.py -------------------------------------------------------------------------------- /scripts/set_inotify_limits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/scripts/set_inotify_limits.sh -------------------------------------------------------------------------------- /ubuntu_install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/ubuntu_install_docker.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzzware-fuzzer/fuzzware/HEAD/update.sh --------------------------------------------------------------------------------