Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 555 Bytes

Top-Devices-Most-Exploitable-Vulnerabilities.md

File metadata and controls

19 lines (14 loc) · 555 Bytes

Top 10 devices with the most exploitable vulnerabilities

Query Information

Description

This query lists the 10 devices in your tenant with the most exploitable vulnerabilities.

Defender XDR

let ExploitableVulnerabilities = DeviceTvmSoftwareVulnerabilitiesKB
     | where IsExploitAvailable == 1
     | project CveId;
DeviceTvmSoftwareVulnerabilities
| where CveId in (ExploitableVulnerabilities)
| summarize TotalExploitableVulns = dcount(CveId), ExploitableCVE = make_set(CveId) by DeviceId
| top 10 by TotalExploitableVulns