diff options
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" + |