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/guides/advanced_search.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,8 @@ The currently supported fields are:
55
55
-**project** – Search using the vendors and products subscribed in a project.
56
56
-**kev** – Search based on the KEV catalog. Accepts `true` or `false`.
57
57
-**epss** – Search based on EPSS score. Accepts a percentage (e.g., `epss:80`) or a decimal between 0 and 1 (e.g., `epss:'0.8'`).
58
+
-**created** - Search by CVE creation date.
59
+
-**updated** - Search by CVE last modification date.
58
60
59
61
!!! important
60
62
Each field supports specific operators to refine your queries effectively:
@@ -63,6 +65,7 @@ The currently supported fields are:
63
65
- `:` performs a partial (LIKE) search.
64
66
- `=` performs an exact match search.
65
67
- Metrics fields (**cvss20**, **cvss30**, **cvss31**, **cvss40**, **epss**) support the following comparison operators: `>`, `>=`, `<`, `<=`, `=`.
68
+
- Date fields (**created**, **updated**) also support comparison operators (`>`, `>=`, `<`, `<=`, `=`). They accept a specific date in `YYYY-MM-DD` format or a relative date (e.g., `7d` for 7 days, `1m` for 1 month, or `1y` for 1 year).
66
69
- **vendor**, **product**, **userTag** and **kev** fields only support the `:` operator.
67
70
68
71
By using fields and operators, you can fine-tune your searches to quickly find relevant CVEs based on your needs.
@@ -121,6 +124,18 @@ To search all CVEs related to the vendors and products subscribed to in a projec
121
124
project:my-project AND epss>=80
122
125
```
123
126
127
+
To search for all CVEs created in the last 7 days and updated in the last 1 day:
128
+
129
+
```
130
+
created<=7d AND updated<=1d
131
+
```
132
+
133
+
To search for all Apache CVEs created in October 2025:
134
+
135
+
```
136
+
vendor:apache AND created>=2025-10-01 AND created<=2025-10-31
137
+
```
138
+
124
139
!!! tip
125
140
Using the `project` field is convenient, as it automatically expands to include all the vendors and products your project is subscribed to.
0 commit comments