lower values for fuzzing state assessment

This commit is contained in:
vanhauser-thc 2025-04-28 19:30:07 +02:00
parent 5f7009d6e9
commit 6d5784e955

View File

@ -54,13 +54,13 @@ 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 >= 80 && percent_total >= 80)) {
if (unlikely(percent_cur >= 75 && percent_total >= 75)) {
if (unlikely(afl->afl_env.afl_exit_when_done)) { afl->stop_soon = 2; }
return fuzzing_state[3];
} else if (unlikely(percent_cur >= 55 && percent_total >= 55)) {
} else if (unlikely(percent_cur >= 50 && percent_total >= 50)) {
return fuzzing_state[2];