Skip to main content

A reproducer component that can compile OSS-Fuzz projects at specific versions and run test cases

Project description

OSV Reproducer

A Python package for reproducing OSS-Fuzz bugs listed by OSV (Open Source Vulnerabilities) as vulnerabilities.

Description

OSV Reproducer is a tool that helps security researchers and developers reproduce vulnerabilities reported in the OSV database. It provides a simple CLI that takes an OSV-ID, fetches the vulnerability data, and reproduces the bug in a containerized environment.

The tool automates the following workflow:

  1. Fetch OSV record by ID
  2. Extract metadata (project name, vulnerable commit, fixed commit, etc.)
  3. Retrieve OSS-Fuzz artifacts (test case, issue report)
  4. Prepare the versioned environment (clone repository at specific commit)
  5. Build and run the vulnerable version with the test case
  6. Verify if the test case crashes the program and matches the issue report
  7. Build and run the fixed version with the test case
  8. Verify if the fix addresses the vulnerability

Installation

pip install osv-reproducer

Usage

OSV Reproducer provides two main commands:

  • reproduce: Reproduces a vulnerability by building the vulnerable version and running it with the test case
  • verify: Verifies if a fix addresses a vulnerability by building the fixed version and running it with the test case

Basic Usage

# Reproduce a vulnerability
osv-reproducer -oid OSV-2023-XXXX reproduce

# Verify a fix
osv-reproducer -oid OSV-2023-XXXX verify

Options

# Required arguments
-oid, --osv_id          Identifier of the vulnerability in the OSV database (e.g., OSV-2023-XXXX)

# Optional arguments
-v, --version           Show version information
-vb, --verbose          Enable verbose output
-o, --output-dir        Directory to store output artifacts (default: ./osv-results)
--build-extra-args      Additional build arguments to pass to the fuzzer container as environment variables
                        Format: 'KEY1:VALUE1|KEY2:VALUE2'

Examples

# Reproduce a vulnerability with verbose output and custom output directory
osv-reproducer -vb -o ~/path/to/results/OSV-2023-1276 -oid OSV-2023-1276 reproduce

# Verify a fix with verbose output and custom output directory
osv-reproducer -vb -o ~/path/to/results/OSV-2023-1276_fix -oid OSV-2023-1276 verify

# Reproduce with additional build arguments
osv-reproducer -vb -o ~/path/to/results/OSV-2021-1361 -oid OSV-2021-1361 --build-extra-args "CFLAGS:-Werror,-Wunused-but-set-variable|CXXFLAGS:-Werror,-Wunused-but-set-variable" reproduce

Workflow

graph TD
    A[Input: OSV-ID] --> B[Fetch OSV Record]
    B --> C[Extract Metadata]
    C --> D[Retrieve OSS-Fuzz Artifacts]
    D --> E[Prepare Versioned Environment]
    
    subgraph Reproduction Mode
        E --> F[Build Vulnerable Version]
        F --> G[Run Test Case]
        G --> H[Verify Crash]
    end
    
    subgraph Verification Mode
        E --> I[Build Fixed Version]
        I --> J[Run Test Case]
        J --> K[Verify No Crash]
    end

Architecture

OSV Reproducer is built using the Cement framework and follows a modular architecture with handlers for different functionalities:

  • BuildHandler: Builds Docker images and runs containers for fuzzing projects
  • DockerHandler: Provides core Docker functionality
  • GCSHandler: Interacts with Google Cloud Storage to retrieve project snapshots
  • GithubHandler: Interacts with GitHub repositories to retrieve commits
  • OSSFuzzHandler: Interacts with OSS-Fuzz to retrieve issue reports and test cases
  • OSVHandler: Interacts with the OSV API to retrieve vulnerability records
  • ProjectHandler: Manages project information and initialization
  • RunnerHandler: Reproduces crashes and verifies them

This modular approach allows for flexibility in how core behaviors are implemented or swapped out, even at runtime or by user command-line options.

Requirements

  • Python 3.8+
  • Docker
  • Internet connection (to access OSV database, GitHub, and Google Cloud Storage)

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

osv_reproducer-0.0.9.tar.gz (52.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

osv_reproducer-0.0.9-py3-none-any.whl (60.3 kB view details)

Uploaded Python 3

File details

Details for the file osv_reproducer-0.0.9.tar.gz.

File metadata

  • Download URL: osv_reproducer-0.0.9.tar.gz
  • Upload date:
  • Size: 52.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.7

File hashes

Hashes for osv_reproducer-0.0.9.tar.gz
Algorithm Hash digest
SHA256 a1217feb984aa0087aabbf981fc71bad15842d31f70167a25fac16bf32eeab96
MD5 6676f950d5c94678802fc118940dc75f
BLAKE2b-256 89cf0099f65b74276e2923a9f2553a46c05801db75e7c3103264c4317b9baee0

See more details on using hashes here.

File details

Details for the file osv_reproducer-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: osv_reproducer-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 60.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.7

File hashes

Hashes for osv_reproducer-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 d3a8daa0bc1322079aae8652e54260bc79719dc8407fcb4d8de8f4d6a8146b66
MD5 cba81486e9160684093c7c896bacca09
BLAKE2b-256 552af61db532c97eefe890a8db621b64d98cdbfe953e9ac1068cf607bdbcbdcc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page