diff options
author | van Hauser <vh@thc.org> | 2022-09-20 17:37:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-20 17:37:20 +0200 |
commit | ad4b7274766418d2006177edebf0d242b49c5fef (patch) | |
tree | deaa5f180c4e739df3f7a499632f9f96e8c687c7 /afl-cmin.bash | |
parent | badd9694d25ac5320b5f6d4e2ee182f59649a821 (diff) | |
parent | 41fe8b6ab9fe3d3f00717b7d7f3de072550f265c (diff) | |
download | afl++-4.03c.tar.gz |
Merge pull request #1527 from AFLplusplus/dev 4.03c
push to stable
Diffstat (limited to 'afl-cmin.bash')
-rwxr-xr-x | afl-cmin.bash | 6 |
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 |