Forum Discussion
dmarquesgn
Dec 22, 2022Iron Contributor
Kusto Query get total number of unique CVEs
Hi, I'm trying to create a Kusto Query to get the total number of unique CVEs viewed by Defender. I think that is the information that is shown on the "Weaknesses" dashboard, but I would like to ex...
- Dec 27, 2022Hi,
Thank you for reaching out!
The following query can be used at Advanced hunting:
------------------------------------
DeviceTvmSoftwareVulnerabilities
| distinct CveId
| count
-------------------------------------
Asaf_Wiener
Dec 27, 2022Former Employee
Hi,
Thank you for reaching out!
The following query can be used at Advanced hunting:
------------------------------------
DeviceTvmSoftwareVulnerabilities
| distinct CveId
| count
-------------------------------------
Thank you for reaching out!
The following query can be used at Advanced hunting:
------------------------------------
DeviceTvmSoftwareVulnerabilities
| distinct CveId
| count
-------------------------------------
- dmarquesgnDec 28, 2022Iron Contributor
Thank you very much. That was exactly what I was searching for.