get_epss_score
Assess the probability of CVE exploitation within 30 days using the Exploit Prediction Scoring System (EPSS). Receive AI-powered risk scores and percentile rankings to prioritize vulnerabilities effectively.
Instructions
Get EPSS exploitability prediction score for a CVE
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cve_id | Yes | Get Exploit Prediction Scoring System (EPSS) scores for a CVE to assess the probability of exploitation in the wild within 30 days. Provide a CVE ID in the format CVE-YYYY-NNNN (e.g., CVE-2021-44228). Returns AI-powered risk prioritization scores with percentile rankings to help security teams focus on vulnerabilities most likely to be exploited by attackers. |
Input Schema (JSON Schema)
{
"properties": {
"cve_id": {
"description": "Get Exploit Prediction Scoring System (EPSS) scores for a CVE to assess the probability of exploitation in the wild within 30 days. Provide a CVE ID in the format CVE-YYYY-NNNN (e.g., CVE-2021-44228). Returns AI-powered risk prioritization scores with percentile rankings to help security teams focus on vulnerabilities most likely to be exploited by attackers.",
"type": "string"
}
},
"required": [
"cve_id"
],
"type": "object"
}