• Home
Name Date Size #Lines LOC

..--

MakefileD03-May-20242 KiB6534

README.mdD03-May-2024480 128

defork.cD03-May-20241.1 KiB5226

forking_target.cD03-May-2024886 5028

README.md

1# defork
2
3when the target forks, this breaks all normal fuzzing runs.
4Sometimes, though, it is enough to just run the child process.
5If this is the case, then this LD_PRELOAD library will always return 0 on fork,
6the target will belive it is running as the child, post-fork.
7
8This is defork.c from the amazing preeny project
9https://github.com/zardus/preeny
10
11It is altered for AFL++ to work with its fork-server: the initial fork will go through, the second fork will be blocked.
12