Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Vulnerability

import type { Vulnerability } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

Refers to common vulnerability fields e.g. cve, cvss, cwe etc.

interface Vulnerability {
cve?: Cve;
fixedPackage?: Package;
offendingPackage?: Package;
securityBulletin?: SecurityBulletin;
}

§Properties

§
cve?: Cve
[src]

CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)

§
fixedPackage?: Package
[src]

The fixed package is relevant to the finding.

§
offendingPackage?: Package
[src]

The offending package is relevant to the finding.

§
securityBulletin?: SecurityBulletin
[src]

The security bulletin is relevant to this finding.