← Back to SOC feed Coverage →

Teams Admin submission of No Threats daily trend

kql MEDIUM Azure-Sentinel
T1562
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-12T11:00:00Z · Confidence: medium

Hunt Hypothesis

Adversaries may submit false positive Teams messages to mask legitimate activity and evade detection, leveraging T1562 to manipulate admin alerts. SOC teams should proactively hunt for this behavior to identify potential adversary attempts to suppress true threat indicators within their Azure Sentinel environment.

KQL Query

//Admin submission of false positive Teams message detections daily trend
let TimeStart = startofday(ago(30d));
let TimeEnd = startofday(now());
let baseQuery=CloudAppEvents
| extend SubmissionType = tostring((parse_json(RawEventData)).SubmissionType),SubmissionContentType=tostring((parse_json(RawEventData)).SubmissionContentType)
| where ActionType == "AdminSubmissionSubmitted" and SubmissionContentType == "ChatMessage";
let Admin_Teams_FP=baseQuery
| make-series Count= countif(SubmissionType == "3") default = 0 on Timestamp from TimeStart to TimeEnd step 1d
| extend Details = "Admin_Teams_FP";
union Admin_Teams_FP
| project Count, Details, Timestamp
| render timechart

Analytic Rule Definition

id: 1a942d90-1e14-4fe9-8ad2-8af56ed16279
name:  Teams Admin submission of No Threats daily trend
description: |
  This query visualises the daily amount of admin false positive Teams message submissions
description-detailed: |
  This query visualises the daily amount of admin false positive Teams message submissions
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - CloudAppEvents
tactics:
  - DefenseEvasion
relevantTechniques:
  - T1562
query: |
 //Admin submission of false positive Teams message detections daily trend
 let TimeStart = startofday(ago(30d));
 let TimeEnd = startofday(now());
 let baseQuery=CloudAppEvents
 | extend SubmissionType = tostring((parse_json(RawEventData)).SubmissionType),SubmissionContentType=tostring((parse_json(RawEventData)).SubmissionContentType)
 | where ActionType == "AdminSubmissionSubmitted" and SubmissionContentType == "ChatMessage";
 let Admin_Teams_FP=baseQuery
 | make-series Count= countif(SubmissionType == "3") default = 0 on Timestamp from TimeStart to TimeEnd step 1d
 | extend Details = "Admin_Teams_FP";
 union Admin_Teams_FP
 | project Count, Details, Timestamp
 | render timechart
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/Microsoft Teams protection/Teams Admin submission of No Threats daily trend.yaml