You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/REST API/rest-api.md
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8731,6 +8731,9 @@ Get a list of all software.
8731
8731
| vulnerable | bool | query | If true or 1, only list software that has detected vulnerabilities. Default is `false`. |
8732
8732
| available_for_install | bool | query | If `true` or `1`, only list software that is available for install (added by the user). Default is `false`. |
8733
8733
| self_service | bool | query | If `true` or `1`, only lists self-service software. Default is `false`. |
8734
+
| min_cvss_score | integer | query |_Available in Fleet Premium_. Filters to include only software with vulnerabilities that have a CVSS version 3.x base score higher than the specified value. |
8735
+
| max_cvss_score | integer | query |_Available in Fleet Premium_. Filters to only include software with vulnerabilities that have a CVSS version 3.x base score lower than what's specified. |
8736
+
| exploit | boolean | query |_Available in Fleet Premium_. If `true`, filters to only include software with vulnerabilities that have been actively exploited in the wild (`cisa_known_exploit: true`). Default is `false`. |
8734
8737
8735
8738
#### Example
8736
8739
@@ -8846,6 +8849,9 @@ Get a list of all software versions.
8846
8849
| query | string | query | Search query keywords. Searchable fields include `name`, `version`, and `cve`. |
8847
8850
| team_id | integer | query |_Available in Fleet Premium_. Filters the software to only include the software installed on the hosts that are assigned to the specified team. |
8848
8851
| vulnerable | bool | query | If true or 1, only list software that has detected vulnerabilities. Default is `false`. |
8852
+
| min_cvss_score | integer | query |_Available in Fleet Premium_. Filters to include only software with vulnerabilities that have a CVSS version 3.x base score higher than the specified value. |
8853
+
| max_cvss_score | integer | query |_Available in Fleet Premium_. Filters to only include software with vulnerabilities that have a CVSS version 3.x base score lower than what's specified. |
8854
+
| exploit | boolean | query |_Available in Fleet Premium_. If `true`, filters to only include software with vulnerabilities that have been actively exploited in the wild (`cisa_known_exploit: true`). Default is `false`. |
8849
8855
8850
8856
#### Example
8851
8857
@@ -9052,8 +9058,7 @@ Retrieves a list of all CVEs affecting software and/or OS versions.
9052
9058
| order_direction | string | query |**Requires `order_key`**. The direction of the order given the order key. Options include `asc` and `desc`. Default is `asc`. |
| exploit | boolean | query |_Available in Fleet Premium_. If `true`, filters to only include vulnerabilities that have been actively exploited in the wild (`cisa_known_exploit: true`). Otherwise, includes vulnerabilities with any `cisa_known_exploit` value. |
9055
-
| min_cvss_score | integer | query |_Available in Fleet Premium_. Filters to only include vulnerabilities with a CVSS version 3.x base score higher than what's specified. |
9056
-
| max_cvss_score | integer | query |_Available in Fleet Premium_. Filters to only include vulnerabilities with a CVSS version 3.x base score lower than what's specified. |
0 commit comments