Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 407 Bytes

Top-Devices-Most-Exploitable-Vulnerabilities.md

File metadata and controls

17 lines (13 loc) · 407 Bytes

Top 10 devices with the most exploitable vulnerabilities


Defender For Endpoint

let ExploitableVulnerabilities = materialize 
(DeviceTvmSoftwareVulnerabilitiesKB
     | where IsExploitAvailable == 1
     | project CveId);
DeviceTvmSoftwareVulnerabilities
| join ExploitableVulnerabilities on CveId
| summarize count(), ExploitableCVE = make_set(CveId) by DeviceName
| top 10 by count_