SELGNov 10, 2017

Not all bytes are equal: Neural byte sieve for fuzzing

arXiv:1711.04596v1127 citations
Originality Incremental advance
AI Analysis

This addresses the challenge of vulnerability detection in software for security researchers, though it is an incremental improvement over existing fuzzing methods.

The paper tackles the problem of efficiently generating malicious inputs for fuzzing by using neural networks to learn patterns from past fuzzing explorations, resulting in significant improvements in code coverage, unique code paths, and crashes for formats like ELF, PNG, PDF, and XML.

Fuzzing is a popular dynamic program analysis technique used to find vulnerabilities in complex software. Fuzzing involves presenting a target program with crafted malicious input designed to cause crashes, buffer overflows, memory errors, and exceptions. Crafting malicious inputs in an efficient manner is a difficult open problem and often the best approach to generating such inputs is through applying uniform random mutations to pre-existing valid inputs (seed files). We present a learning technique that uses neural networks to learn patterns in the input files from past fuzzing explorations to guide future fuzzing explorations. In particular, the neural models learn a function to predict good (and bad) locations in input files to perform fuzzing mutations based on the past mutations and corresponding code coverage information. We implement several neural models including LSTMs and sequence-to-sequence models that can encode variable length input files. We incorporate our models in the state-of-the-art AFL (American Fuzzy Lop) fuzzer and show significant improvements in terms of code coverage, unique code paths, and crashes for various input formats including ELF, PNG, PDF, and XML.

Foundations

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

Your Notes