From 6865cd8d691385f805a63b62f9836abf98061e4f Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Sun, 1 Mar 2020 13:46:57 +0100 Subject: Added AFL_AUTORESUME option --- docs/Changelog.md | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/Changelog.md') diff --git a/docs/Changelog.md b/docs/Changelog.md index 2548a356..ab374596 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -13,6 +13,7 @@ sending a mail to . - qemu_mode now uses solely the internal capstone version to fix builds on modern Linux distributions - more tools get environment variable usage info in the help output + - AFL_AUTORESUME will resume execution without the need to specify `-i -` ### Version ++2.62c (release): -- cgit 1.4.1 From f0cf9c2cdf6fbf26063a1abef479d4f1b1b4e704 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Sun, 1 Mar 2020 22:30:38 +0100 Subject: make afl-showmap quiet when called from afl-cmin* --- afl-cmin | 1 + afl-cmin.bash | 2 ++ docs/Changelog.md | 2 ++ 3 files changed, 5 insertions(+) (limited to 'docs/Changelog.md') 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 . ### 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 -` -- cgit 1.4.1