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;
cwes?: Cwe[];
fixedPackage?: Package;
offendingPackage?: Package;
providerRiskScore?: bigint;
reachable?: boolean;
securityBulletin?: SecurityBulletin;
}§Properties
§
CVE stands for Common Vulnerabilities and Exposures (https://cve.mitre.org/about/)
§
providerRiskScore?: bigint
[src]Provider provided risk_score based on multiple factors. The higher the risk score, the more risky the vulnerability is.
§
reachable?: boolean
[src]Represents whether the vulnerability is reachable (detected via static analysis)
§
securityBulletin?: SecurityBulletin
[src]The security bulletin is relevant to this finding.