diff options
author | yuawn <ssspeed00@gmail.com> | 2021-12-14 13:38:36 +0000 |
---|---|---|
committer | yuawn <ssspeed00@gmail.com> | 2021-12-14 13:38:36 +0000 |
commit | ae958acc83e5a30b69c3333f09e9d0a0f25eade5 (patch) | |
tree | 069ac55506b9b5248df8c452a1e692613b9c754f | |
parent | 088aae7c25d49b0eebaf3d29842b148d1aeade01 (diff) | |
download | afl++-ae958acc83e5a30b69c3333f09e9d0a0f25eade5.tar.gz |
rename unique_crashes
-rwxr-xr-x | afl-whatsup | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/afl-whatsup b/afl-whatsup index 9b989b48..a88f3d10 100755 --- a/afl-whatsup +++ b/afl-whatsup @@ -188,7 +188,7 @@ for i in `find . -maxdepth 2 -iname fuzzer_stats | sort`; do TOTAL_TIME=$((TOTAL_TIME + RUN_UNIX)) TOTAL_EPS=$((TOTAL_EPS + EXEC_SEC)) TOTAL_EXECS=$((TOTAL_EXECS + execs_done)) - TOTAL_CRASHES=$((TOTAL_CRASHES + unique_crashes)) + TOTAL_CRASHES=$((TOTAL_CRASHES + saved_crashes)) TOTAL_PENDING=$((TOTAL_PENDING + pending_total)) TOTAL_PFAV=$((TOTAL_PFAV + pending_favs)) @@ -231,10 +231,10 @@ for i in `find . -maxdepth 2 -iname fuzzer_stats | sort`; do echo " cpu usage $CPU_USAGE%, memory usage $MEM_USAGE%" echo " cycle $((cycles_done + 1)), lifetime speed $EXEC_SEC execs/sec, path $cur_item/$corpus_count (${PATH_PERC}%)" - if [ "$unique_crashes" = "0" ]; then + if [ "$saved_crashes" = "0" ]; then echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, no crashes yet" else - echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, crash count $unique_crashes (!)" + echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, crash count $saved_crashes (!)" fi echo |