Detection rules › Kusto

Detect Malicious Teams Message

Author
Robbe Van den Daele
Source
github.com/HybridBrothers/Hunting-Queries-Detection-Rules

This detection rule detects Microsoft Teams messages where MDO detected a threat in the message.

MITRE ATT&CK coverage

References

Rule body yaml

// Malicious messages detection
MessageEvents
| where ThreatTypes != ""
| join kind=leftouter MessageUrlInfo on TeamsMessageId

Stages and Predicates

Stage 1: source

MessageEvents

Stage 2: where

| where ThreatTypes != ""

Stage 3: join

| join kind=leftouter MessageUrlInfo on TeamsMessageId