query_for_cve_affected
Query the OSV database to identify and retrieve the affected versions for a specified CVE, enabling precise vulnerability analysis and management.
Instructions
Query the OSV database for a CVE and return the affected versions.
Args:
cve: The CVE ID to query
Returns:
A list of affected versions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cve | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cve": {
"title": "Cve",
"type": "string"
}
},
"required": [
"cve"
],
"title": "query_for_cve_affectedArguments",
"type": "object"
}