SEOct 22, 2025

On Interaction Effects in Greybox Fuzzing

arXiv:2510.19984h-index: 2
Originality Incremental advance
AI Analysis

For software testing practitioners, this work improves greybox fuzzing efficiency by learning mutator sequences, though the improvement is incremental over existing methods.

The authors hypothesized that the order of mutators in greybox fuzzing affects effectiveness, confirmed via linear modeling, and proposed MuoFuzz which learns optimal mutator sequences. MuoFuzz achieved highest code coverage on FuzzBench and MAGMA, finding four bugs missed by AFL++ and one missed by both AFL++ and MOPT.

A greybox fuzzer is an automated software testing tool that generates new test inputs by applying randomly chosen mutators (e.g., flipping a bit or deleting a block of bytes) to a seed input in random order and adds all coverage-increasing inputs to the corpus of seeds. We hypothesize that the order in which mutators are applied to a seed input has an impact on the effectiveness of greybox fuzzers. In our experiments, we fit a linear model to a dataset that contains the effectiveness of all possible mutator pairs and indeed observe the conjectured interaction effect. This points us to more efficient fuzzing by choosing the most promising mutator sequence with a higher likelihood. We propose MuoFuzz, a greybox fuzzer that learns and chooses the most promising mutator sequences. MuoFuzz learns the conditional probability that the next mutator will yield an interesting input, given the previously selected mutator. Then, it samples from the learned probability using a random walk to generate mutator sequences. We compare the performance of MuoFuzz to AFL++, which uses a fixed selection probability, and MOPT, which optimizes the selection probability of each mutator in isolation. Experimental results on the FuzzBench and MAGMA benchmarks show that MuoFuzz achieves the highest code coverage and finds four bugs missed by AFL++ and one missed by both AFL++ and MOPT.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes