CVE Intelligence API
Query CVE (Common Vulnerabilities and Exposures) data matched against your discovered devices and services.
Get Affected Devices
GET /api/v1/cve/affected?page=1&per_page=25
Query Parameters
| Parameter | Type | Description |
|---|---|---|
severity | string | Filter: critical, high, medium, low |
cvss_min | float | Minimum CVSS score (0.0 - 10.0) |
site_id | string | Filter by site |
device_id | string | Filter by specific device |
search | string | Search CVE ID or description |
Response:
{
"data": [
{
"cve_id": "CVE-2024-3094",
"description": "Backdoor in xz-utils 5.6.0-5.6.1 allows remote code execution",
"cvss_score": 10.0,
"severity": "critical",
"published": "2024-03-29",
"affected_devices": [
{
"device_id": "device-uuid",
"ip": "192.168.1.15",
"hostname": "server-web-01",
"matched_service": "openssh/9.7",
"matched_port": 22
}
],
"references": [
"https://nvd.nist.gov/vuln/detail/CVE-2024-3094"
],
"mitre_techniques": ["T1195.002"]
}
],
"meta": {"page": 1, "total": 7}
}
Search CVEs
GET /api/v1/cve/search?q=apache+log4j&cvss_min=7.0