Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 809 Bytes

runHuntingQueryExecution.md

File metadata and controls

29 lines (24 loc) · 809 Bytes

Graph API runHuntingQuery

Query Information

Description

This query lists successful runHuntingQuery Graph API calls from applications.

References

Defender XDR

MicrosoftGraphActivityLogs
| where RequestUri has "runHuntingQuery"
// Only list app based results
| where isnotempty(AppId)
| where ResponseStatusCode == 200
| project TimeGenerated, RequestUri, AppId, ResponseStatusCode, ResponseSizeBytes

Sentinel

MicrosoftGraphActivityLogs
| where RequestUri has "runHuntingQuery"
// Only list app based results
| where isnotempty(AppId)
| where ResponseStatusCode == 200
| project TimeGenerated, RequestUri, AppId, ResponseStatusCode, ResponseSizeBytes