User Submissions by Submission State (FP)


Description

This query visualises user false positive submissions by submission state.

Query · kql

CloudAppEvents
| where ActionType == "UserSubmission"
| extend RawData = parse_json(RawEventData)
| extend RecordType = toint(RawData.RecordType), SubmissionType = tostring(RawData.SubmissionType), SubmissionState = tostring(RawData.SubmissionState)
| where RecordType == 29 and SubmissionType == "3"
| summarize count() by SubmissionState
| render piechart
Raw source User Submissions by Submission State (FP) · KQL
Esc
Published by Azure/Azure-Sentinel ↗, licensed under MIT ↗. Reproduced here unmodified.
id: f8637343-8fbc-48de-b31a-ed4bb68b60f2
name: User Submissions by Submission State (FP)
description: |
  This query visualises user false positive submissions by submission state.
description-detailed: |
  This query visualises user false positive submissions by submission state.
  Query is also included as part of the Defender for Office 365 solution in Sentinel: https://techcommunity.microsoft.com/blog/microsoftdefenderforoffice365blog/part-2-build-custom-email-security-reports-and-dashboards-with-workbooks-in-micr/4411303
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - CloudAppEvents
tactics:
  - InitialAccess
relevantTechniques:
  - T1566
query: |
  CloudAppEvents
  | where ActionType == "UserSubmission"
  | extend RawData = parse_json(RawEventData)
  | extend RecordType = toint(RawData.RecordType), SubmissionType = tostring(RawData.SubmissionType), SubmissionState = tostring(RawData.SubmissionState)
  | where RecordType == 29 and SubmissionType == "3"
  | summarize count() by SubmissionState
  | render piechart
version: 1.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.