Skip to main content

vulnerabilities

Creates, updates, deletes, gets or lists a vulnerabilities resource.

Overview

Namevulnerabilities
TypeResource
Idaws.inspector2.vulnerabilities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID for the specific vulnerability.
atig_dataobjectAn object that contains information about the Amazon Web Services Threat Intel Group (ATIG) details for the vulnerability.
cisa_dataobjectAn object that contains the Cybersecurity and Infrastructure Security Agency (CISA) details for the vulnerability.
cvss_2objectAn object that contains the Common Vulnerability Scoring System (CVSS) Version 2 details for the vulnerability.
cvss_3objectAn object that contains the Common Vulnerability Scoring System (CVSS) Version 3 details for the vulnerability.
cvss_4objectAn object that contains the Common Vulnerability Scoring System (CVSS) Version 4 details for the vulnerability.
cwesarrayThe Common Weakness Enumeration (CWE) associated with the vulnerability.
descriptionstringA description of the vulnerability.
detection_platformsarrayPlatforms that the vulnerability can be detected on.
epssobjectAn object that contains the Exploit Prediction Scoring System (EPSS) score for a vulnerability.
exploit_observedobjectAn object that contains details on when the exploit was observed.
reference_urlsarrayLinks to various resources with more information on this vulnerability.
related_vulnerabilitiesarrayA list of related vulnerabilities.
sourcestringThe source of the vulnerability information. Possible results are RHEL, AMAZON_CVE, DEBIAN or NVD. (NVD)
source_urlstringA link to the official source material for this vulnerability.
vendor_created_atstring (date-time)The date and time when the vendor created this vulnerability.
vendor_severitystringThe severity assigned by the vendor.
vendor_updated_atstring (date-time)The date and time when the vendor last updated this vulnerability.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_vulnerabilitiesselectregionLists Amazon Inspector coverage details for a specific vulnerability.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists Amazon Inspector coverage details for a specific vulnerability.

SELECT
id,
atig_data,
cisa_data,
cvss_2,
cvss_3,
cvss_4,
cwes,
description,
detection_platforms,
epss,
exploit_observed,
reference_urls,
related_vulnerabilities,
source,
source_url,
vendor_created_at,
vendor_severity,
vendor_updated_at
FROM aws.inspector2.vulnerabilities
WHERE region = '{{ region }}' -- required
;