Dominik Maier b0179b4498
Update some deps, clippy (#1422)
* More less default

* More clippy

* updated rangemap

* Clean up depencdencies

* Undo accidental remove

* Fix

* trying to fix qemu build

* hexagon be gone
2023-08-17 17:15:03 +02:00
..
2023-08-17 17:15:03 +02:00

DeExit

This util helps you, if your target calls exit during a fuzz run. A simple wrapper that can be inserted into a program to turn exit calls to abort, which LibAFL will be able to catch. If you are on MacOS, use the env variables DYLD_FORCE_FLAT_NAMESPACE=1 DYLD_INSERT_LIBRARIES="path/to/target/release/libdeexit.dylib" tool On Linux, use LD_PRELOAD="path/to/target/release/libdeexit.so" tool.