• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..19-Jul-2021-

MakefileH A D19-Jul-20212 KiB6534

README.mdH A D19-Jul-2021480 128

defork.cH A D19-Jul-20211.1 KiB5226

forking_target.cH A D19-Jul-2021886 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