aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryuawn <ssspeed00@gmail.com>2021-12-14 13:58:54 +0000
committeryuawn <ssspeed00@gmail.com>2021-12-14 13:58:54 +0000
commitbf8e07d168110d9534fd288358cc3b63347cf0ec (patch)
tree3f526d7f23e95b319aea30a1770ffb8b45f64417
parentae958acc83e5a30b69c3333f09e9d0a0f25eade5 (diff)
downloadafl++-bf8e07d168110d9534fd288358cc3b63347cf0ec.tar.gz
update output
-rwxr-xr-xafl-whatsup8
1 files changed, 4 insertions, 4 deletions
diff --git a/afl-whatsup b/afl-whatsup
index a88f3d10..5f694cc5 100755
--- a/afl-whatsup
+++ b/afl-whatsup
@@ -229,12 +229,12 @@ for i in `find . -maxdepth 2 -iname fuzzer_stats | sort`; do
MEM_USAGE=$(ps aux | grep $fuzzer_pid | grep -v grep | awk '{print $4}')
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}%)"
+ echo " cycle $((cycles_done + 1)), lifetime speed $EXEC_SEC execs/sec, item $cur_item/$corpus_count (${PATH_PERC}%)"
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 $saved_crashes (!)"
+ echo " pending $pending_favs/$pending_total, coverage $bitmap_cvg, crashes saved $saved_crashes (!)"
fi
echo
@@ -293,13 +293,13 @@ echo " Cumulative speed : $TOTAL_EPS execs/sec"
if [ "$ALIVE_CNT" -gt "0" ]; then
echo " Average speed : $((TOTAL_EPS / ALIVE_CNT)) execs/sec"
fi
-echo " Pending paths : $TOTAL_PFAV faves, $TOTAL_PENDING total"
+echo " Pending items : $TOTAL_PFAV faves, $TOTAL_PENDING total"
if [ "$ALIVE_CNT" -gt "1" ]; then
echo " Pending per fuzzer : $((TOTAL_PFAV/ALIVE_CNT)) faves, $((TOTAL_PENDING/ALIVE_CNT)) total (on average)"
fi
-echo " Crashes found : $TOTAL_CRASHES locally unique"
+echo " Crashes saved : $TOTAL_CRASHES locally unique"
echo "Cycles without finds : $TOTAL_WCOP"
echo " Time without finds : $TOTAL_LAST_PATH"
echo