vul_vendor_product_cve
Retrieve a JSON listing all vulnerabilities for a specific vendor and product using the CVE-Search API, enabling targeted security analysis and risk assessment.
Instructions
To get a JSON with all the vulnerabilities per vendor and a specific product
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product | Yes | ||
vendor | Yes |
Input Schema (JSON Schema)
{
"properties": {
"product": {
"title": "Product",
"type": "string"
},
"vendor": {
"title": "Vendor",
"type": "string"
}
},
"required": [
"vendor",
"product"
],
"title": "vul_vendor_product_cveArguments",
"type": "object"
}