AFLplusplus/LibAFL

Restart after n target executions, instead of n fuzz_loops

Aberta

#834 aberto em 13 de out. de 2022

 (2 comentários) (0 reação) (0 responsável)Rust (479 forks)github user discovery
enhancementhelp wanted

Métricas do repositório

Stars
 (2.621 estrelas)
Métricas de merge de PR
 (Mesclagem média 17d 22h) (10 fundiu PRs em 30d)

Description

So far, we have the option to restart an InProcess target after n rounds of fuzzing.

This means, however, that the number of target executions per round potentially grows after more testcases have been added to the corpus. Instead, we should offer the option to restart after a fixed amount of iterations, to make sure targets leaking memory won't explode over time. This could either be done by counting executions in the harness, and raising a signal accordingly (not taking it as objective), or by counting outside of the executor and retuning from the current stage.

Guia do colaborador