AFLplusplus/LibAFL

Restart after n target executions, instead of n fuzz_loops

开放

#834 创建于 2022年10月13日

 (2 条评论) (0 个反应) (0 位负责人)Rust (479 个派生)github user discovery
enhancementhelp wanted

仓库指标

星标
 (2,621 个星标)
PR 合并指标
 (平均合并 17天 22小时) (30 天内合并 10 个 PR)

描述

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.

贡献者指南