Query Details
# Defense Evasion Alerts Generated by Defender For Endpoint
### Defender For Endpoint
```
CloudAppEvents
| where ActionType == 'DefenseEvasion'
| extend
AlertUri = parse_json(RawEventData).AlertUri,
AlertDisplayName = parse_json(RawEventData).AlertDisplayName,
AlertSeverity = parse_json(RawEventData).AlertSeverity
| project AlertUri, AlertDisplayName, AlertSeverity
```
### Sentinel
```
CloudAppEvents
| where ActionType == 'DefenseEvasion'
| extend
AlertUri = parse_json(RawEventData).AlertUri,
AlertDisplayName = parse_json(RawEventData).AlertDisplayName,
AlertSeverity = parse_json(RawEventData).AlertSeverity
| project AlertUri, AlertDisplayName, AlertSeverity
```
This query retrieves defense evasion alerts generated by Defender for Endpoint and Sentinel. It filters the CloudAppEvents data for alerts with the ActionType 'DefenseEvasion' and extracts the AlertUri, AlertDisplayName, and AlertSeverity from the RawEventData. The final result includes the AlertUri, AlertDisplayName, and AlertSeverity for each alert.

Bert-Jan Pals
Released: February 14, 2023
Tables
Keywords
Operators