diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-01 20:34:20 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-01 20:34:20 +0200 |
commit | 3b3df4e3cb0ce3e6ea728b68694b579e15cd00f7 (patch) | |
tree | aae036d19e07c6cb673d30b033e3e45067e48e9c /src/afl-fuzz-src/misc.c | |
parent | 4f3c417753c7ff40023fcbb2958eb6109ebdd575 (diff) | |
download | afl++-3b3df4e3cb0ce3e6ea728b68694b579e15cd00f7.tar.gz |
afl-fuzz-src bitmap and queue C files
Diffstat (limited to 'src/afl-fuzz-src/misc.c')
-rw-r--r-- | src/afl-fuzz-src/misc.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/afl-fuzz-src/misc.c b/src/afl-fuzz-src/misc.c new file mode 100644 index 00000000..58e57c8f --- /dev/null +++ b/src/afl-fuzz-src/misc.c @@ -0,0 +1,24 @@ +/* + american fuzzy lop - fuzzer code + -------------------------------- + + Written and maintained by Michal Zalewski <lcamtuf@google.com> + + Forkserver design by Jann Horn <jannhorn@googlemail.com> + + Copyright 2013, 2014, 2015, 2016, 2017 Google Inc. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at: + + http://www.apache.org/licenses/LICENSE-2.0 + + This is the real deal: the program takes an instrumented binary and + attempts a variety of basic fuzzing tricks, paying close attention to + how they affect the execution path. + + */ + +#include "afl-fuzz.h" + |