get_cve
Retrieve detailed information on a specific CVE ID from cve-search.org to assess security vulnerabilities and enhance threat analysis.
Instructions
Get details for a specific CVE ID. Source: cve-search.org
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cveId | Yes | CVE ID to retrieve information for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cveId": {
"description": "CVE ID to retrieve information for",
"type": "string"
}
},
"required": [
"cveId"
],
"type": "object"
}