added

Vulnerability Management: New Zero-Day Filter for Vulnerability Exports

Tenable has added a new filter for the Export vulnerabilities endpoint that enables users to identify and export zero-day vulnerabilities. Zero-day vulnerabilities are those for which no official patch or fix was available at the time of disclosure.

The new filter parameter is described in the following table:

FilterData TypeDescription
zero_dayBooleanFilters vulnerabilities by zero-day status. If omitted, both zero-day and non–zero-day vulnerabilities are included in the export results.

Example Request

curl --request POST \
     --url https://cloud.tenable.com/vulns/export \
     --header 'X-ApiKeys: accessKey=<YOURKEY>;secretKey=<YOURKEY>' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "num_assets": 100,
  "filters": {
    "zero_day": true
  }
}
'