Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 478 Bytes

File metadata and controls

12 lines (12 loc) · 478 Bytes

Lookup vulnerability information based on a CveID


Defender For Endpoint

let CVE = "CVE-2022-3602"; // Add your CVEid here
DeviceTvmSoftwareVulnerabilities
| where CveId == CVE
| summarize VulnerableDevices = make_set(DeviceName) by CveId
| join DeviceTvmSoftwareVulnerabilitiesKB on CveId
| extend TotalDevices = array_length(VulnerableDevices)
| project TotalDevices, CveId, VulnerabilitySeverityLevel, CvssScore, VulnerabilityDescription, VulnerableDevices