← Back to SOC feed Coverage →

Status of submissions

kql MEDIUM Azure-Sentinel
T1566
CloudAppEvents
huntingmicrosoftofficial
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-05-18T11:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may use this rule to check the status of submitted indicators or artifacts, potentially to assess the effectiveness of detection efforts or to evade detection. SOC teams should proactively hunt for this behavior to identify potential adversary reconnaissance or evasion tactics in their Azure Sentinel environment.

KQL Query

CloudAppEvents
| where Timestamp > ago(30d) 
| extend Record= (parse_json(RawEventData)).RecordType 
| extend SubmissionState = (parse_json(RawEventData)).SubmissionState  
| extend UserKey = (parse_json(RawEventData)).UserKey 
| where Record == 29 
| where ActionType == "UserSubmission" or ActionType == "AdminSubmission" 
| summarize count() by tostring(SubmissionState) 
| sort by count_

Analytic Rule Definition

id: 1c390fd7-2668-4445-9b7d-055f3851be5f
name: Status of submissions
description: |
  This query helps reviewing status of submissions
description-detailed: |
  This query helps reviewing status of submissions in Defender for Office 365.
requiredDataConnectors:
  - connectorId: MicrosoftThreatProtection
    dataTypes:
      - CloudAppEvents
tactics:
  - InitialAccess
relevantTechniques:
  - T1566
query: |
  CloudAppEvents
  | where Timestamp > ago(30d) 
  | extend Record= (parse_json(RawEventData)).RecordType 
  | extend SubmissionState = (parse_json(RawEventData)).SubmissionState  
  | extend UserKey = (parse_json(RawEventData)).UserKey 
  | where Record == 29 
  | where ActionType == "UserSubmission" or ActionType == "AdminSubmission" 
  | summarize count() by tostring(SubmissionState) 
  | sort by count_
version: 1.0.0

Required Data Sources

Sentinel TableNotes
CloudAppEventsEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Email and Collaboration Queries/Submissions/Status of submissions.yaml