Dominik Maier 94f0c7f56e
Moving to named parameters in format strings (#827)
* autofix

* you're just asking for a clamping

* autofmt on linux

* fix nits

* change back nit

* unfixing as u64 for GuestAddr

* fix

* ignoring clippy for GuestAddress
2022-10-11 13:45:01 +02:00
..
2022-02-11 14:34:01 +01: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.