cve_search_by_id
Retrieve comprehensive CVE details including description, CVSS scores, affected products, and references by providing a CVE identifier.
Instructions
Get detailed information about a specific CVE by its identifier.
This tool queries the CVE database to retrieve comprehensive vulnerability information including description, CVSS scores, affected products, references, and remediation guidance.
What this tool provides:
CVE description and summary
CVSS v2 and v3 scores with vector strings
Affected products and versions (CPE format)
References to advisories, patches, and exploits
CWE (Common Weakness Enumeration) mappings
Publication and modification timestamps
Impact ratings and severity
Common Use Cases:
Security research and vulnerability assessment
Incident response investigations
Patch management prioritization
Security advisory creation
Compliance reporting
Args: cve_id: The CVE identifier in the format CVE-YYYY-NNNNN (e.g., CVE-2024-47176, CVE-2023-12345)
Returns: JSON string containing comprehensive CVE details including: - id: CVE identifier - summary: Vulnerability description - cvss: CVSS v2 score - cvss3: CVSS v3 score with full metrics - vulnerable_configuration: List of affected CPEs - references: Links to advisories and patches - cwe: Common Weakness Enumeration identifier - Published: Publication timestamp - Modified: Last modification timestamp
Examples: "CVE-2024-47176" - Recent vulnerability "CVE-2023-12345" - Search any CVE from any year "CVE-2021-44228" - Log4Shell vulnerability
Notes: - Data sourced from cve-search.org (CIRCL.LU) - No API key required - Database updated regularly from NVD and other sources - Returns detailed CAPEC, CWE, and CPE expansions
Not Found Response: When a CVE is not found, returns a JSON response with this structure: { "found": false, "resource": "CVE-YYYY-NNNNN", "resource_type": "cve", "message": "CVE-YYYY-NNNNN not found in the CVE database." }
Raises: CVEClientError: If there's an error communicating with the API (not for not-found cases).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cve_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |