For the complete documentation index, see llms.txt. This page is also available as Markdown.

lookupCveSeverity

Look up a CVE severity + CVSS base score (for a manually-added CVE indicator).

Examples

query LookupCveSeverity($cve: String!) {
  lookupCveSeverity(cve: $cve) {
    cve
    severity
    cvssScore
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "cve": "example"
}

Arguments

You can use the following argument(s) to customize your lookupCveSeverity query.

Argument
Description
Supported fields

cve String! required

Fields

Return type: CveSeverityInfo!

You can use the following field(s) to specify what information your lookupCveSeverity query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

cve String!

cvssScore Float

Last updated