Update WDAC hunting query

Existing query does not appear to work within WDATP Advanced hunting, this updates the query to return the expected result.
This commit is contained in:
Ben McGarry
2020-08-24 15:06:41 +01:00
committed by GitHub
parent bf27feee14
commit 8d5aefa6bf

View File

@ -30,10 +30,10 @@ This capability is supported beginning with Windows version 1607.
Here is a simple example query that shows all the WDAC events generated in the last seven days from machines being monitored by Microsoft Defender ATP:
```
MiscEvents
| where EventTime > ago(7d) and
DeviceEvents
| where Timestamp > ago(7d) and
ActionType startswith "AppControl"
| summarize Machines=dcount(ComputerName) by ActionType
| summarize Machines=dcount(DeviceName) by ActionType
| order by Machines desc
```