Risk Intelligence
Searches through the vulnerabilities.
Create a search operation for vulnerabilities. This endpoint will not return the list of resulting vulnerabilities, but instead it will return a search key, that can be used to list the vulnerabilities found by using getVulnerabilities operation. Attention: Every unique client id can create a maximum of 100000 search key per day. Attention: All array type search criteria may take a maximum of 100000 values each.
post/api/v2/riskintelligence/vulnerabilities/search
Request body
Example request
{
"GenericSearchText": "CVE-2024",
"Cves": [
"CVE-2024-55956"
],
"AddedToKevDateFrom": "1999-09-29T16:47:36.527Z",
"AddedToKevDateTo": "2001-09-29T16:47:36.527Z",
"TagApplyDateFrom": "2021-04-01",
"TagApplyDateTo": "2024-04-01",
"TagExpiryDateFrom": "2021-04-01",
"TagExpiryDateTo": "2024-04-01",
"InKev": true,
"ExploitPoC": true,
"MentionedCyberSecCom": true,
"ExploitedByThreatActors": true,
"TagProcess": "APPLIED",
"ConfidenceLevel": "High",
"TagConfidences": [
"High"
]
}Response
Success
Example response
{
"Key": "0f8fad5b-d9cb-469f-a165-70867728950e"
}