Vulnerabilities
APIs for managing vulnerabilities
Get a list of vulnerabilities that match the filter fields. The list includes key information about each vulnerability.
Required license: Cortex Cloud Runtime Security or Cortex Cloud Posture Management.
OK
Unauthorized access. An issue occurred during authentication. This can indicate an incorrect key, id, or other invalid authentication parameters.
Internal server error. A unified status for API communication type errors.
POST /public_api/uvem/v1/get_vulnerabilities HTTP/1.1
Host: api-yourfqdn
Content-Type: application/json
Accept: */*
Content-Length: 208
{
"request_data": {
"filters": [
{
"field": "attack_vector",
"operator": "text",
"value": "text"
}
],
"sort": {
"field": "text",
"keyword": "asc"
},
"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",
"epss_score": 1,
"cvss_score": 1,
"cvss_severity": "text",
"package_names": [
"text"
],
"vendors": [
"text"
],
"distribution_and_releases": [
"text"
],
"cisa_kev": null,
"cvss_severity_source": "text",
"cvss_score_source": "text",
"first_published": 1,
"last_modified": 1,
"reported_exploited_by": [
{}
],
"attack_vector": "text",
"cvss_version": "text"
}
],
"next_page_token": "text"
}
}Get detailed information about a specific vulnerability.
For example, the following request retrieves detailed information about CVE-2021-28799: https://api-{{fqdn}}/public_api/uvem/v1/vulnerabilities?vulnerabilityId=CVE-2021-28799
Required license: Cortex Cloud Runtime Security or Cortex Cloud Posture Management.
Vulnerability ID
CVE-2023-1234api-key
{{api-key}}api-key-id
{{api_key_id}}OK
GET /public_api/uvem/v1/vulnerabilities?vulnerabilityId=CVE-2023-1234 HTTP/1.1
Host: api-yourfqdn
authorization: {{api-key}}
x-xdr-auth-id: {{api_key_id}}
Accept: */*
OK
{
"cvss": {
"baseScoreMetrics": {
"attackComplexity": "text",
"attackVector": "text",
"availabilityImpact": "text",
"confidentialityImpact": "text",
"integrityImpact": "text",
"privilegesRequired": "text",
"scope": "text",
"userInteraction": "text"
},
"score": 1,
"scoreSource": "text",
"severity": "text",
"severitySource": "text",
"vectorString": "text",
"version": "text"
},
"description": "text",
"epss_score": 1,
"exploitDetails": {
"commercialExploitFound": true,
"exploitMaturity": "text",
"firstReportedThreatActor": 1,
"mostRecentReportedThreatActor": 1,
"publicExploitFound": true,
"reportedExploited": true,
"reportedExploitedByBotnets": true,
"reportedExploitedByRansomware": true,
"reportedExploitedByThreatActors": true,
"weaponizedExploitFound": true
},
"fixVersions": "text",
"isKev": true,
"temporalCvss": {
"confidence": "text",
"score": 1,
"vectorString": "text",
"version": "text"
},
"vulnerabilityID": "text"
}Last updated
Was this helpful?
