Kusto Query LanguageMicrosoft Defender XDRMicrosoft SentinelSECURE

List Automatically Closed Incidents

Description

This KQL query lists the incidents that are automatically closed by Microsoft Defender XDR. It is good practice to get an overview of the automatically closed incidents and review them once every x period to determine if all the risks have been covered. The amount of automatically closed incidents depend on the Automation levels in automated investigation and remediation capabilities that are set in your tenant.

Query

Microsoft Sentinel
Kusto
SecurityIncident
| where ProviderName == "Microsoft 365 Defender" and ModifiedBy == "Microsoft 365 Defender"
| extend OwnerObjectID = tostring(Owner.objectId)
| where Status == "Closed" and Classification == "Undetermined"
| where isempty(OwnerObjectID)
| where isnotempty(ClassificationComment)

References

Leave a Reply

Your email address will not be published. Required fields are marked *