Dominik Maier 12c470a707
Atheris example to fuzz Python Code (#300)
* initial atheris libfuzzer harness

* cmplog, kinda

* added makefile to generic_inmemory

* Makefile for atheris fuzzer

* moved away from clap yaml

* fixed arg parsing

* fuzzing

* ldpreload lib to replace exit with abort

* fixed docker, docs

* fix docker some more

* better documentation

* less commented out important things

* Make makefile less crashy
2021-11-03 10:13:05 +01:00

412 B

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.