Interface GitHubAdvisoryVulnerability

A package affected by an advisory vulnerability.

interface GitHubAdvisoryVulnerability {
    first_patched_version: null | { identifier: string };
    package: null | { ecosystem: string; name: string };
    severity: null | string;
    vulnerable_version_range: null | string;
}

Properties

first_patched_version: null | { identifier: string }

First version that contains the fix

package: null | { ecosystem: string; name: string }

The affected package

severity: null | string

Severity of this specific vulnerability

vulnerable_version_range: null | string

Semver range of vulnerable versions