cves_by_product
Search for CVEs affecting specific products or CPEs, with filtering by KEV status, EPSS score sorting, date ranges, and pagination to identify relevant vulnerabilities.
Instructions
Search for vulnerabilities affecting specific products or CPEs. Supports filtering by KEV status, sorting by EPSS score, date ranges, and pagination. Can search by product name or CPE 2.3 identifier. Returns detailed vulnerability information including severity scores and impact assessments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | If true, returns only the count of matching CVEs. | |
cpe23 | No | The CPE version 2.3 identifier (format: cpe:2.3:part:vendor:product:version). | |
end_date | No | End date for filtering CVEs (format: YYYY-MM-DDTHH:MM:SS). | |
is_kev | No | If true, returns only CVEs with the KEV flag set. | |
limit | No | Maximum number of CVEs to return (max 1000). | |
product | No | The name of the product to search for CVEs. | |
skip | No | Number of CVEs to skip (for pagination). | |
sort_by_epss | No | If true, sorts CVEs by EPSS score in descending order. | |
start_date | No | Start date for filtering CVEs (format: YYYY-MM-DDTHH:MM:SS). |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": false,
"description": "If true, returns only the count of matching CVEs.",
"type": "boolean"
},
"cpe23": {
"description": "The CPE version 2.3 identifier (format: cpe:2.3:part:vendor:product:version).",
"type": "string"
},
"end_date": {
"description": "End date for filtering CVEs (format: YYYY-MM-DDTHH:MM:SS).",
"type": "string"
},
"is_kev": {
"default": false,
"description": "If true, returns only CVEs with the KEV flag set.",
"type": "boolean"
},
"limit": {
"default": 1000,
"description": "Maximum number of CVEs to return (max 1000).",
"type": "number"
},
"product": {
"description": "The name of the product to search for CVEs.",
"type": "string"
},
"skip": {
"default": 0,
"description": "Number of CVEs to skip (for pagination).",
"type": "number"
},
"sort_by_epss": {
"default": false,
"description": "If true, sorts CVEs by EPSS score in descending order.",
"type": "boolean"
},
"start_date": {
"description": "Start date for filtering CVEs (format: YYYY-MM-DDTHH:MM:SS).",
"type": "string"
}
},
"type": "object"
}