Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 922 Bytes

Visualization - ExposureLevels.md

File metadata and controls

28 lines (24 loc) · 922 Bytes

PieChart - Exposure Level Onboarded Devices

Query Information

Description

This query visualizes the onboarded devices and their exposure level in a PieChart. The higher the exposure level of a device, the more likely it is to be exploited.

References

Defender For Endpoint

DeviceInfo
| where Timestamp > ago(30d)
| where OnboardingStatus == "Onboarded"
| summarize arg_max(Timestamp, *) by DeviceId
| summarize Total = count() by ExposureLevel
| render piechart with(title="Overview Exposure Level")

Sentinel

DeviceInfo
| where TimeGenerated > ago(30d)
| where OnboardingStatus == "Onboarded"
| summarize arg_max(TimeGenerated, *) by DeviceId
| summarize Total = count() by ExposureLevel
| render piechart with(title="Overview Exposure Level")