coverage-analysis

Installation
Summary

Measure code exercised during fuzzing to assess harness effectiveness and identify blockers.

  • Supports LLVM, GCC, and Rust instrumentation with step-by-step workflows for building coverage-instrumented binaries and executing them against fuzzing corpora
  • Provides detailed guidance on generating text and HTML reports using llvm-cov, gcovr, and cargo-fuzz, including filtering harness code and handling large codebases
  • Includes practical patterns for identifying magic value checks, handling crashing inputs, and integrating coverage into CMake projects and CI/CD pipelines
  • Covers tool-specific approaches for libFuzzer, AFL++, cargo-fuzz, and honggfuzz with integration tips and troubleshooting for common issues
SKILL.md

Coverage Analysis

Coverage analysis is essential for understanding which parts of your code are exercised during fuzzing. It helps identify fuzzing blockers like magic value checks and tracks the effectiveness of harness improvements over time.

Overview

Code coverage during fuzzing serves two critical purposes:

  1. Assessing harness effectiveness: Understand which parts of your application are actually executed by your fuzzing harnesses
  2. Tracking fuzzing progress: Monitor how coverage changes when updating harnesses, fuzzers, or the system under test (SUT)

Coverage is a proxy for fuzzer capability and performance. While coverage is not ideal for measuring fuzzer performance in absolute terms, it reliably indicates whether your harness works effectively in a given setup.

Key Concepts

Concept Description
Coverage instrumentation Compiler flags that track which code paths are executed
Corpus coverage Coverage achieved by running all test cases in a fuzzing corpus
Related skills
Installs
2.3K
GitHub Stars
5.1K
First Seen
Jan 19, 2026