about summary refs log tree commit diff
path: root/afl-cmin.bash
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2022-09-20 17:37:20 +0200
committerGitHub <noreply@github.com>2022-09-20 17:37:20 +0200
commitad4b7274766418d2006177edebf0d242b49c5fef (patch)
treedeaa5f180c4e739df3f7a499632f9f96e8c687c7 /afl-cmin.bash
parentbadd9694d25ac5320b5f6d4e2ee182f59649a821 (diff)
parent41fe8b6ab9fe3d3f00717b7d7f3de072550f265c (diff)
downloadafl++-4.03c.tar.gz
Merge pull request #1527 from AFLplusplus/dev 4.03c
push to stable
Diffstat (limited to 'afl-cmin.bash')
-rwxr-xr-xafl-cmin.bash6
1 files changed, 5 insertions, 1 deletions
diff --git a/afl-cmin.bash b/afl-cmin.bash
index d2218cd0..10c9477a 100755
--- a/afl-cmin.bash
+++ b/afl-cmin.bash
@@ -53,7 +53,7 @@ unset IN_DIR OUT_DIR STDIN_FILE EXTRA_PAR MEM_LIMIT_GIVEN \
 
 export AFL_QUIET=1
 
-while getopts "+i:o:f:m:t:eOQUCh" opt; do
+while getopts "+i:o:f:m:t:eOQUACh" opt; do
 
   case "$opt" in 
 
@@ -80,6 +80,9 @@ while getopts "+i:o:f:m:t:eOQUCh" opt; do
     "e")
          EXTRA_PAR="$EXTRA_PAR -e"
          ;;
+    "A")
+         export AFL_CMIN_ALLOW_ANY=1
+         ;;
     "C")
          export AFL_CMIN_CRASHES_ONLY=1
          ;;
@@ -128,6 +131,7 @@ Execution control settings:
   
 Minimization settings:
 
+  -A            - allow crashing and timeout inputs
   -C            - keep crashing inputs, reject everything else
   -e            - solve for edge coverage only, ignore hit counts