diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-10-13 10:38:13 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-10-13 10:38:13 +0200 |
commit | ac5b0a3b34ab63e33bbaa336518f206f8ba8698f (patch) | |
tree | 8bc9346cf56099de708870aa3a864fbf7cfadb85 | |
parent | 8f854ee83a6dd70ff5a3e70f6064928b35d2ab17 (diff) | |
download | afl++-ac5b0a3b34ab63e33bbaa336518f206f8ba8698f.tar.gz |
moar doc
-rwxr-xr-x | .custom-format.py | 15 | ||||
-rw-r--r-- | qemu_mode/README.md | 2 | ||||
-rw-r--r-- | unicorn_mode/README.md | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/.custom-format.py b/.custom-format.py index b7416843..8d762006 100755 --- a/.custom-format.py +++ b/.custom-format.py @@ -1,4 +1,19 @@ #!/usr/bin/env python3 +# +# american fuzzy lop++ - custom code formatter +# -------------------------------------------- +# +# Written and maintaned by Andrea Fioraldi <andreafioraldi@gmail.com> +# +# Copyright 2015, 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 +# import subprocess import sys diff --git a/qemu_mode/README.md b/qemu_mode/README.md index 81904cf1..a85407e4 100644 --- a/qemu_mode/README.md +++ b/qemu_mode/README.md @@ -101,7 +101,7 @@ AFL_COMPCOV_LEVEL=1 is to instrument comparisons with only immediate values / read-only memory. AFL_COMPCOV_LEVEL=2 instruments all comparison instructions and memory comparison functions when libcompcov is preloaded. Comparison instructions are currently instrumented only -on the x86 and x86_64 targets. +on the x86, x86_64 and ARM targets. Highly recommended. diff --git a/unicorn_mode/README.md b/unicorn_mode/README.md index ea3e3c9b..8f381b59 100644 --- a/unicorn_mode/README.md +++ b/unicorn_mode/README.md @@ -99,7 +99,7 @@ The options that enables Unicorn CompareCoverage are the same used for QEMU. AFL_COMPCOV_LEVEL=1 is to instrument comparisons with only immediate values. QEMU_COMPCOV_LEVEL=2 instruments all comparison instructions. Comparison instructions are currently instrumented only -on the x86 and x86_64 targets. +for the x86, x86_64 and ARM targets. ## 4) Gotchas, feedback, bugs |