Get Impacted Distros for a Vulnerability
GET/asm/api/v1/asset/vulnerability
Get the list of all the distributions(distros) and its packages that are impacted by the vulnerability based on the CVE ID.
Request
Query Parameters
cve_id stringrequired
CVE id
Responses
- 200
Successful response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
cveId string
cvssScore float
severity string[]
impactedDistros object[]
distro string
impactCount int32
distroDetails object[]
cvssScore float
packageName string
release string
severity string
{
"cveId": "string",
"cvssScore": 0,
"severity": [
"string"
],
"impactedDistros": [
{
"distro": "string",
"impactCount": 0,
"distroDetails": [
{
"cvssScore": 0,
"packageName": "string",
"release": "string",
"severity": "string"
}
]
}
]
}
Loading...