diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-07-16 02:17:05 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-07-16 02:17:05 +0200 |
commit | f465a75b6592e4c30b0465f63beda166a8e09045 (patch) | |
tree | ea72e8c66e2cb3842e342b2ab9cb1b1558c22fa1 /examples/defork/README.md | |
parent | 4314e59af9a2224443fa38ac8145eba305189d97 (diff) | |
download | afl++-f465a75b6592e4c30b0465f63beda166a8e09045.tar.gz |
added initial defork example
Diffstat (limited to 'examples/defork/README.md')
-rw-r--r-- | examples/defork/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/defork/README.md b/examples/defork/README.md new file mode 100644 index 00000000..7e950323 --- /dev/null +++ b/examples/defork/README.md @@ -0,0 +1,11 @@ +# defork + +when the target forks, this breaks all normal fuzzing runs. +Sometimes, though, it is enough to just run the child process. +If this is the case, then this LD_PRELOAD library will always return 0 on fork, +the target will belive it is running as the child, post-fork. + +This is defork.c from the amazing preeny project +https://github.com/zardus/preeny + +It is altered for afl++ to work with its fork-server: the initial fork will go through, the second fork will be blocked. |