mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 01:31:37 +00:00
lower values for fuzzing state assessment
This commit is contained in:
parent
5f7009d6e9
commit
6d5784e955
@ -54,13 +54,13 @@ char *get_fuzzing_state(afl_state_t *afl) {
|
|||||||
u64 percent_cur = last_find_100 / cur_run_time;
|
u64 percent_cur = last_find_100 / cur_run_time;
|
||||||
u64 percent_total = last_find_100 / cur_total_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; }
|
if (unlikely(afl->afl_env.afl_exit_when_done)) { afl->stop_soon = 2; }
|
||||||
|
|
||||||
return fuzzing_state[3];
|
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];
|
return fuzzing_state[2];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user