diff options
author | vanhauser-thc <vh@thc.org> | 2023-06-12 08:43:30 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-06-12 08:43:30 +0200 |
commit | 25eba95bbaf58539c65088fc8bc143ed30ad82b9 (patch) | |
tree | 5cfb16157cf3002da3ce09e4ce6a3828017419b5 /src/afl-fuzz-stats.c | |
parent | 6ec70fc0847a0624692e868743080bf4e6935523 (diff) | |
download | afl++-25eba95bbaf58539c65088fc8bc143ed30ad82b9.tar.gz |
update new feature config
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 9a60fd47..1499a7e4 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -48,11 +48,11 @@ char *get_fuzzing_state(afl_state_t *afl) { u64 percent_cur = last_find_100 / cur_run_time; u64 percent_total = last_find_100 / cur_total_run_time; - if (unlikely(percent_cur >= 90 && percent_total >= 90)) { + if (unlikely(percent_cur >= 80 && percent_total >= 80)) { return fuzzing_state[3]; - } else if (unlikely(percent_cur >= 75 && percent_total >= 75)) { + } else if (unlikely(percent_cur >= 55 && percent_total >= 55)) { return fuzzing_state[2]; |