list_cve_products
Retrieve a list of all products linked to a specific vendor in the CVE database using this tool. Ideal for identifying potential vulnerabilities in vendor-specific software.
Instructions
Get a list of all products associated with a vendor in the CVE database. Source: cve-search.org
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vendor | Yes | Vendor name to list products for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"vendor": {
"description": "Vendor name to list products for",
"type": "string"
}
},
"required": [
"vendor"
],
"type": "object"
}