diff options
author | van Hauser <vh@thc.org> | 2020-03-01 22:30:38 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-01 22:30:38 +0100 |
commit | f0cf9c2cdf6fbf26063a1abef479d4f1b1b4e704 (patch) | |
tree | a0680e781370816322efe5f3060fd3ec20728bf3 | |
parent | 3e0a3ec45fe35f62a293d86139913ecf45670535 (diff) | |
download | afl++-f0cf9c2cdf6fbf26063a1abef479d4f1b1b4e704.tar.gz |
make afl-showmap quiet when called from afl-cmin*
-rwxr-xr-x | afl-cmin | 1 | ||||
-rwxr-xr-x | afl-cmin.bash | 2 | ||||
-rw-r--r-- | docs/Changelog.md | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/afl-cmin b/afl-cmin index c7531221..28d8c746 100755 --- a/afl-cmin +++ b/afl-cmin @@ -1,4 +1,5 @@ #!/usr/bin/env sh +export AFL_QUIET=1 THISPATH=`dirname ${0}` export PATH="${THISPATH}:$PATH" awk -f - -- ${@+"$@"} <<'EOF' diff --git a/afl-cmin.bash b/afl-cmin.bash index b1378eb5..1f23f6bc 100755 --- a/afl-cmin.bash +++ b/afl-cmin.bash @@ -51,6 +51,8 @@ TIMEOUT=none unset IN_DIR OUT_DIR STDIN_FILE EXTRA_PAR MEM_LIMIT_GIVEN \ AFL_CMIN_CRASHES_ONLY AFL_CMIN_ALLOW_ANY QEMU_MODE UNICORN_MODE +export AFL_QUIET=1 + while getopts "+i:o:f:m:t:eQUCh" opt; do case "$opt" in diff --git a/docs/Changelog.md b/docs/Changelog.md index ab374596..d5c2a279 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -10,8 +10,10 @@ sending a mail to <afl-users+subscribe@googlegroups.com>. ### Version ++2.62d (developt): + - qemu_mode now uses solely the internal capstone version to fix builds on modern Linux distributions + - afl-fuzz basic tools now report on the environment variables picked up - more tools get environment variable usage info in the help output - AFL_AUTORESUME will resume execution without the need to specify `-i -` |