Get Affected Assets for Specific Vulnerability
POST {{cb_url}}/vulnerability/assessment/api/v1/orgs/{{cb_org_key}}/vulnerabilities/{{cb_cve_id}}/devices
Get a list of assets affected by a specific vulnerability CVE ID.
Request schema
{
"os_product_id": "string",
"query": "<string>",
"rows": "<integer>",
"start": "<integer>",
"criteria": {
"property": {
"value": "<string>",
"operator": "<string>"
}
},
"sort": [
{
"field": "<string>",
"order": "<string>"
}
]
}
RBAC Permissions Required
Permission (.notation name) | Operation(s) |
---|---|
vulnerabilityAssessment.data | READ |
Request Body
{"os_product_id"=>"313_0", "query"=>"Python", "rows"=>20, "start"=>0, "criteria"=>{"severity"=>{"value"=>"CRITICAL", "operator"=>"EQUALS"}}, "sort"=>[{"field"=>"arch", "order"=>"DESC"}]}