diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-as.h | 15 | ||||
-rw-r--r-- | include/afl-fuzz.h | 15 | ||||
-rw-r--r-- | include/alloc-inl.h | 13 | ||||
-rw-r--r-- | include/android-ashmem.h | 24 | ||||
-rw-r--r-- | include/common.h | 25 | ||||
-rw-r--r-- | include/config.h | 13 | ||||
-rw-r--r-- | include/debug.h | 13 | ||||
-rw-r--r-- | include/forkserver.h | 26 | ||||
-rw-r--r-- | include/hash.h | 4 | ||||
-rw-r--r-- | include/sharedmem.h | 26 | ||||
-rw-r--r-- | include/types.h | 13 |
11 files changed, 157 insertions, 30 deletions
diff --git a/include/afl-as.h b/include/afl-as.h index 55d8694d..f7e5c4dd 100644 --- a/include/afl-as.h +++ b/include/afl-as.h @@ -1,12 +1,15 @@ /* - american fuzzy lop - injectable parts - ------------------------------------- + american fuzzy lop++ - injectable parts + --------------------------------------- - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Forkserver design by Jann Horn <jannhorn@googlemail.com> - - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 3206ee72..17bdf95d 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -1,12 +1,15 @@ /* - american fuzzy lop - fuzzer code - -------------------------------- + american fuzzy lop++ - fuzzer header + ------------------------------------ - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Forkserver design by Jann Horn <jannhorn@googlemail.com> - - Copyright 2013, 2014, 2015, 2016, 2017 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. diff --git a/include/alloc-inl.h b/include/alloc-inl.h index 6e46ae19..de9ac1fc 100644 --- a/include/alloc-inl.h +++ b/include/alloc-inl.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - error-checking, memory-zeroing alloc routines - ------------------------------------------------------------------ + american fuzzy lop++ - error-checking, memory-zeroing alloc routines + -------------------------------------------------------------------- - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. diff --git a/include/android-ashmem.h b/include/android-ashmem.h index 02a84d11..bfe7166e 100644 --- a/include/android-ashmem.h +++ b/include/android-ashmem.h @@ -1,3 +1,27 @@ +/* + american fuzzy lop++ - android shared memory compatibility layer + ---------------------------------------------------------------- + + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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 header re-defines the shared memory routines used by AFL++ + using the Andoid API. + + */ + #ifndef _ANDROID_ASHMEM_H #define _ANDROID_ASHMEM_H diff --git a/include/common.h b/include/common.h index 9845c2af..443d1418 100644 --- a/include/common.h +++ b/include/common.h @@ -1,3 +1,28 @@ +/* + american fuzzy lop++ - common routines header + --------------------------------------------- + + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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 + + Gather some functions common to multiple executables + + - detect_file_args + + */ + #ifndef __AFLCOMMON_H #define __AFLCOMMON_H #include "types.h" diff --git a/include/config.h b/include/config.h index d85a503d..3ea75bb5 100644 --- a/include/config.h +++ b/include/config.h @@ -1,10 +1,15 @@ /* - american fuzzy lop plus plus - vaguely configurable bits - ---------------------------------------------- + american fuzzy lop++ - vaguely configurable bits + ------------------------------------------------ - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. diff --git a/include/debug.h b/include/debug.h index 5ff2e23e..201ff943 100644 --- a/include/debug.h +++ b/include/debug.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - debug / error handling macros - -------------------------------------------------- + american fuzzy lop++ - debug / error handling macros + ---------------------------------------------------- - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. diff --git a/include/forkserver.h b/include/forkserver.h index bfc35800..d40af87c 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -1,3 +1,29 @@ +/* + american fuzzy lop++ - forkserver header + ---------------------------------------- + + Originally written by Michal Zalewski <lcamtuf@google.com> + + Forkserver design by Jann Horn <jannhorn@googlemail.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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 + + Shared code that implements a forkserver. This is used by the fuzzer + as well the other components like afl-tmin. + + */ + #ifndef __AFL_FORKSERVER_H #define __AFL_FORKSERVER_H diff --git a/include/hash.h b/include/hash.h index f60839ea..0ffaa410 100644 --- a/include/hash.h +++ b/include/hash.h @@ -1,6 +1,6 @@ /* - american fuzzy lop - hashing function - ------------------------------------- + american fuzzy lop++ - hashing function + --------------------------------------- The hash32() function is a variant of MurmurHash3, a good non-cryptosafe hashing function developed by Austin Appleby. diff --git a/include/sharedmem.h b/include/sharedmem.h index 7e13b13b..3fbfe664 100644 --- a/include/sharedmem.h +++ b/include/sharedmem.h @@ -1,3 +1,29 @@ +/* + american fuzzy lop++ - shared memory related header + --------------------------------------------------- + + Originally written by Michal Zalewski <lcamtuf@google.com> + + Forkserver design by Jann Horn <jannhorn@googlemail.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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 + + Shared code to handle the shared memory. This is used by the fuzzer + as well the other components like afl-tmin, afl-showmap, etc... + + */ + #ifndef __AFL_SHAREDMEM_H #define __AFL_SHAREDMEM_H diff --git a/include/types.h b/include/types.h index dba666b6..baf68401 100644 --- a/include/types.h +++ b/include/types.h @@ -1,10 +1,15 @@ /* - american fuzzy lop - type definitions and minor macros - ------------------------------------------------------ + american fuzzy lop++ - type definitions and minor macros + -------------------------------------------------------- - Written and maintained by Michal Zalewski <lcamtuf@google.com> + Originally written by Michal Zalewski <lcamtuf@google.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> - Copyright 2013, 2014, 2015 Google Inc. All rights reserved. + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019 AFLplusplus Project. 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. |