Get EPSS exploitation scores
cve_get_epssRetrieve Exploit Prediction Scoring System (EPSS) scores for one or more CVEs to prioritize patching by real-world exploitation likelihood and percentile ranking.
Instructions
Retrieve EPSS (Exploit Prediction Scoring System, by FIRST.org) scores for one or more CVEs.
EPSS estimates the probability (0-100%) that a CVE will be exploited in the wild within the next 30 days, plus a percentile ranking across all scored CVEs. Useful for prioritizing patching beyond raw CVSS severity.
Args:
cve_ids (string[]): 1-100 CVE identifiers.
response_format ('markdown'|'json', default 'markdown').
Returns (json): { count, scores: [ { cve, epss, percentile, date } ] } (epss/percentile as fractions 0-1).
Examples:
"EPSS for CVE-2021-44228" -> cve_ids=["CVE-2021-44228"].
"Rank these three by exploitation likelihood" -> cve_ids=[...].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cve_ids | Yes | One or more CVE IDs to score (1-100). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured data). | markdown |