A distributed vulnerability database for Open Source

An open, precise, and distributed approach to producing and consuming vulnerability information for open source.

Ecosystems

AlmaLinux
5882 View AlmaLinux vulnerabilities
Alpaquita
15521 View Alpaquita vulnerabilities
Alpine
4589 View Alpine vulnerabilities
Android
2912 View Android vulnerabilities
Azure Linux
17041 View Azure Linux vulnerabilities
BellSoft Hardened Containers
744 View BellSoft Hardened Containers vulnerabilities
Bitnami
9217 View Bitnami vulnerabilities
Chainguard
1017165 View Chainguard vulnerabilities
CleanStart
3422 View CleanStart vulnerabilities
crates.io
2710 View crates.io vulnerabilities
Debian
67275 View Debian vulnerabilities
Echo
2744 View Echo vulnerabilities
GIT
104340 View GIT vulnerabilities
GitHub Actions
55 View GitHub Actions vulnerabilities
Go
9149 View Go vulnerabilities
Hackage
32 View Hackage vulnerabilities
Hex
350 View Hex vulnerabilities
Julia
1713 View Julia vulnerabilities
Linux
28753 View Linux vulnerabilities
Mageia
6188 View Mageia vulnerabilities
Maven
6998 View Maven vulnerabilities
MinimOS
142078 View MinimOS vulnerabilities
npm
228435 View npm vulnerabilities
NuGet
1860 View NuGet vulnerabilities
openEuler
8541 View openEuler vulnerabilities
openSUSE
14321 View openSUSE vulnerabilities
OSS-Fuzz
4003 View OSS-Fuzz vulnerabilities
Packagist
7042 View Packagist vulnerabilities
PyPI
25072 View PyPI vulnerabilities
Red Hat
23025 View Red Hat vulnerabilities
Rocky Linux
4223 View Rocky Linux vulnerabilities
Root
19464 View Root vulnerabilities
RubyGems
4709 View RubyGems vulnerabilities
SUSE
23035 View SUSE vulnerabilities
SwiftURL
59 View SwiftURL vulnerabilities
TuxCare
9351 View TuxCare vulnerabilities
Ubuntu
64335 View Ubuntu vulnerabilities
Wolfi
330057 View Wolfi vulnerabilities

OSV schema

All advisories in this database use the OpenSSF OSV format, which was developed in collaboration with open source communities.

The OSV schema provides a human and machine readable data format to describe vulnerabilities in a way that precisely maps to open source package versions or commit hashes.

{
  "schema_version": "1.7.4",
  "id": "GHSA-c3g4-w6cv-6v7h",
  "modified": "2022-04-01T13:56:42Z",
  "published": "2022-04-01T13:56:42Z",
  "aliases": [ "CVE-2022-27651" ],
  "summary": "Non-empty default inheritable capabilities for linux container in Buildah",
  "details": "A bug was found in Buildah where containers were created ...",
  "affected": [
    {
      "package": {
        "ecosystem": "Go",
        "name": "github.com/containers/buildah"
      },
      "ranges": [
        {
          "type": "SEMVER",
          "events": [
            {
              "introduced": "0"
            },
            {
              "fixed": "1.25.0"
            }
          ]
        }
      ]
    }
  ],
  "references": [
    {
      "type": "WEB",
      "url": "https://github.com/containers/buildah/commit/..."
    },
    {
      "type": "PACKAGE",
      "url": "https://github.com/containers/buildah"
    }
  ]
}

Data sources

This infrastructure serves as an aggregator of vulnerability databases that have adopted the OSV schema, including GitHub Security Advisories, PyPA, RustSec, and Global Security Database, and more.

Use the API

An easy-to-use API is available to query for all known vulnerabilities by either a commit hash, or a package version.

Query by commit hash

curl -d \
  '{"commit": "6879efc2c1596d11a6a6ad296f80063b558d5e0f"}' \
  "https://api.osv.dev/v1/query"
content_copy

Query by version number

curl -d \
  '{"version": "2.4.1",
    "package": {"name": "jinja2", "ecosystem": "PyPI"}}' \
  "https://api.osv.dev/v1/query"
content_copy

Vulnerability Scanner

Install OSV‑Scanner

go install github.com/google/osv-scanner/v2/cmd/osv-scanner@v2
          
content_copy

Scan SBOM or Lockfiles

osv-scanner --sbom=cycloned-or-spdx-sbom.json
osv-scanner --lockfile=package-lock.json
          
content_copy

Scan directory recursively

osv-scanner -r path/to/your/project
          
content_copy

Remediation Tools

Guided Remediation (basic)

osv-scanner fix --non-interactive --strategy=in-place -L path/to/package-lock.json
osv-scanner fix --non-interactive --strategy=relock -M path/to/package.json -L path/to/package-lock.json
          
content_copy

Guided Remediation (interactive)

osv-scanner fix -M path/to/package.json -L path/to/package-lock.json
          
content_copy

Container Image Scanning

You can use OSV-Scanner to scan your container images for known vulnerabilities.

Scan container image

osv-scanner scan image --serve alpine:3.12
          
content_copy
Screenshot of container scan HTML output

GitHub Workflows

OSV-Scanner also provides reusable GitHub workflows that can be easily integrated into CI/CD pipelines to provide continuous vulnerability scanning coverage. This can scan newly added dependencies in pull requests for introduced vulnerabilities, as well as perform regular vulnerability scans for the entire project.

Screenshot of OSV-Scanner GitHub Action

Open source

This project is open source. If you have any ideas or questions, please feel free to reach out by creating an issue!