Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 503 Bytes

Pivot - DeviceVulnerabilities.md

File metadata and controls

14 lines (11 loc) · 503 Bytes

List all the vulnerabilities each device has in a pivot table

Query Information

Description

This query returns a row for each device with the amount of Critical, High, Medium and Low Vulnerabilities that device has.

Defender For Endpoint

DeviceTvmSoftwareVulnerabilities
| project DeviceName, VulnerabilitySeverityLevel
| evaluate pivot(VulnerabilitySeverityLevel): (DeviceName: string,Critical: long, High: long, Medium: long, Low: long)
| sort by Critical, High, Medium, Low