update new feature config

This commit is contained in:
vanhauser-thc
2023-06-12 08:43:30 +02:00
parent 6ec70fc084
commit 25eba95bba
2 changed files with 3 additions and 3 deletions

View File

@ -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];