Defense Evasion Alerts Generated by Defender For Endpoint
Description
This query lists the Defense Evasion Alerts Generated by Defender For Endpoint.
Query · kql
CloudAppEvents
| where ActionType == 'DefenseEvasion'
| extend
AlertUri = parse_json(RawEventData).AlertUri,
AlertDisplayName = parse_json(RawEventData).AlertDisplayName,
AlertSeverity = parse_json(RawEventData).AlertSeverity
| project AlertUri, AlertDisplayName, AlertSeverity