Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 652 Bytes

Pivot - ASRTriggers.md

File metadata and controls

17 lines (13 loc) · 652 Bytes

List the triggered ASR events for each device in a pivot table

Query Information

Description

This query returns a row for each device with a count for each Attack Surface Reduction trigger type. This can be used to find devices that trigger a lot of ASR rules. The reference can be used to find more information on each specific ASR rule.

References

Defender For Endpoint

DeviceEvents
| where ActionType startswith 'ASR'
| project DeviceName, ActionType
| evaluate pivot(ActionType)