CRSENov 16, 2018

DifFuzz: Differential Fuzzing for Side-Channel Analysis

arXiv:1811.07005v2105 citations
AI Analysis

This addresses the challenge of identifying side-channel vulnerabilities for software security, though it is an incremental improvement over existing fuzzing and analysis methods.

The authors tackled the problem of detecting side-channel vulnerabilities in programs by introducing DifFuzz, a fuzzing-based approach that automatically finds inputs maximizing resource consumption differences between secret-dependent paths, and demonstrated it can reveal unknown vulnerabilities in Java applications while outperforming state-of-the-art tools like Blazer and Themis.

Side-channel attacks allow an adversary to uncover secret program data by observing the behavior of a program with respect to a resource, such as execution time, consumed memory or response size. Side-channel vulnerabilities are difficult to reason about as they involve analyzing the correlations between resource usage over multiple program paths. We present DifFuzz, a fuzzing-based approach for detecting side-channel vulnerabilities related to time and space. DifFuzz automatically detects these vulnerabilities by analyzing two versions of the program and using resource-guided heuristics to find inputs that maximize the difference in resource consumption between secret-dependent paths. The methodology of DifFuzz is general and can be applied to programs written in any language. For this paper, we present an implementation that targets analysis of Java programs, and uses and extends the Kelinci and AFL fuzzers. We evaluate DifFuzz on a large number of Java programs and demonstrate that it can reveal unknown side-channel vulnerabilities in popular applications. We also show that DifFuzz compares favorably against Blazer and Themis, two state-of-the-art analysis tools for finding side-channels in Java programs.

Code Implementations2 repos
Foundations

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

Your Notes