Affected Software
APIs for managing affected software
Get a filtered list of the software affected by one or more vulnerabilities.
Required license: Cortex Cloud Runtime Security or Cortex Cloud Posture Management.
Header parameters
AuthorizationstringRequired
{api-key}
x-xdr-auth-idstringRequired
{api-key-id}
Body
Responses
200
OK
application/json
401
Unauthorized access. An issue occurred during authentication. This can indicate an incorrect key, id, or other invalid authentication parameters.
application/json
500
Internal server error. A unified status for API communication type errors.
application/json
post/public_api/uvem/v1/get_affected_software
POST /public_api/uvem/v1/get_affected_software HTTP/1.1
Host: api-yourfqdn
Authorization: text
x-xdr-auth-id: text
Content-Type: application/json
Accept: */*
Content-Length: 220
{
"request_data": {
"filters": [
{
"field": "affected_cpu_archs",
"operator": "contains",
"value": [
"text"
]
}
],
"sort": {
"field": "text",
"keyword": "text"
},
"search_from": 0,
"search_to": 500,
"use_page_token": true,
"next_page_token": "text"
}
}{
"reply": {
"result_count": 1,
"total_count": 1,
"vulnerabilities": [
{
"vulnerability_id": "text",
"cvss_score": 1,
"cvss_severity": "text",
"package_name": "text",
"distro": "text",
"release": "text",
"affected_cpu_archs": [
{}
],
"last_modified": 1,
"affected_versions": [
"text"
]
}
],
"next_page_token": "text"
}
}Last updated
Was this helpful?
