search_cves
Identify vulnerabilities by searching Common Vulnerabilities and Exposures (CVEs) for specific vendors and products using cve-search.org. Ideal for enhancing Kubernetes and cloud security insights.
Instructions
Search CVEs by vendor and optionally product. Source: cve-search.org
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product | No | Product name to search for | |
vendor | Yes | Vendor name to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"product": {
"description": "Product name to search for",
"type": "string"
},
"vendor": {
"description": "Vendor name to search for",
"type": "string"
}
},
"required": [
"vendor"
],
"type": "object"
}