Number of unique accounts performing Teams message User submissions


Description

This query visualises number of unqiue accounts performing Teams message user submissions as false negatives or false positives

Query · kql

CloudAppEvents
| where ActionType == "UserSubmission"
| extend SubmissionType = tostring((parse_json(RawEventData)).SubmissionType),SubmissionContentType=tostring((parse_json(RawEventData)).SubmissionContentType),SubmittedBy=tostring((parse_json(RawEventData)).UserId)
| where SubmissionContentType == "ChatMessage"
| summarize dcount(SubmittedBy)
Raw source Number of unique accounts performing Teams message User submissions · KQL
Esc
Published by Azure/Azure-Sentinel ↗, licensed under MIT ↗. Reproduced here unmodified.
id: 489ad959-48eb-4c34-bed6-764cfd39214d
name: Number of unique accounts performing Teams message User  submissions
description: |
  This query visualises number of unqiue accounts performing Teams message user submissions as false negatives or false positives
description-detailed: |
 This query visualises number of unqiue accounts performing Teams message user submissions as false negatives or false positives
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - CloudAppEvents
tactics:
  - InitialAccess
relevantTechniques:
  - T1566
query: |
  CloudAppEvents
  | where ActionType == "UserSubmission"
  | extend SubmissionType = tostring((parse_json(RawEventData)).SubmissionType),SubmissionContentType=tostring((parse_json(RawEventData)).SubmissionContentType),SubmittedBy=tostring((parse_json(RawEventData)).UserId)
  | where SubmissionContentType == "ChatMessage"
  | summarize dcount(SubmittedBy) 
version: l.0.0

Detection rules belong to the projects that publish them and remain under their own licenses. This site indexes and links to them; it claims no rights in them.