diff options
author | vanhauser-thc <vh@thc.org> | 2021-04-14 17:52:43 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-04-14 17:52:43 +0200 |
commit | 5e72568a455bde8ac389b8b234cbdbbb0d33e015 (patch) | |
tree | 172e26f6e2d5dcc205535e7cdf9e8c34dea10604 | |
parent | 36c7c49738ae659868f70ea7d1b85804158b532f (diff) | |
download | afl++-5e72568a455bde8ac389b8b234cbdbbb0d33e015.tar.gz |
ui update
-rw-r--r-- | docs/status_screen.md | 11 | ||||
-rw-r--r-- | src/afl-fuzz-stats.c | 2 |
2 files changed, 10 insertions, 3 deletions
diff --git a/docs/status_screen.md b/docs/status_screen.md index 0329d960..e3abcc5f 100644 --- a/docs/status_screen.md +++ b/docs/status_screen.md @@ -251,8 +251,9 @@ exceed it by a margin sufficient to be classified as hangs. | arithmetics : 53/2.54M, 0/537k, 0/55.2k | | known ints : 8/322k, 12/1.32M, 10/1.70M | | dictionary : 9/52k, 1/53k, 1/24k | - | havoc : 1903/20.0M, 0/0 | - | trim : 20.31%/9201, 17.05% | + |havoc/splice : 1903/20.0M, 0/0 | + |py/custom/rq : unused, 53/2.54M, unused | + | trim/eff : 20.31%/9201, 17.05% | +-----------------------------------------------------+ ``` @@ -268,6 +269,12 @@ goal. Finally, the third number shows the proportion of bytes that, although not possible to remove, were deemed to have no effect and were excluded from some of the more expensive deterministic fuzzing steps. +Note that when deterministic mutation mode is off (which is the default +because it is not very efficient) the first five lines display +"disabled (default, enable with -D)". + +Only what is activated will have counter shown. + ### Path geometry ``` diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index e0e24a18..009cebf6 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -1074,7 +1074,7 @@ void show_stats(afl_state_t *afl) { // //} else { - SAYF(bV bSTOP " trim : " cRST "%-36s " bSTG bV RESET_G1, tmp); + SAYF(bV bSTOP " trim/eff : " cRST "%-36s " bSTG bV RESET_G1, tmp); //} |