Spoof Detections by Detection Technology


Description

This query visualises total emails with Phish (BEC) Spoof detections by Detection Technology

Query · kql

EmailEvents 
| where DetectionMethods has 'Spoof' 
| project Timestamp, DT=parse_json(DetectionMethods) 
| evaluate bag_unpack(DT) 
| summarize count() by Phish=tostring(column_ifexists('Phish', ''))
| sort by count_ desc
| render piechart
Raw source Spoof Detections by Detection Technology · KQL
Esc
Published by Azure/Azure-Sentinel ↗, licensed under MIT ↗. Reproduced here unmodified.
id: 0d62d79a-38ef-43d5-a884-347024638250
name: Spoof Detections by Detection Technology
description: |
  This query visualises total emails with Phish (BEC) Spoof detections by Detection Technology
description-detailed: |
  This query visualises total emails with Phish Business Email Compromise (BEC) Spoof detections by various Impersonation Detection technologies/controls in Microsoft Defender for Office 365.
  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:
  - EmailEvents
tactics:
  - InitialAccess
relevantTechniques:
  - T1566
query: |
  EmailEvents 
  | where DetectionMethods has 'Spoof' 
  | project Timestamp, DT=parse_json(DetectionMethods) 
  | evaluate bag_unpack(DT) 
  | summarize count() by Phish=tostring(column_ifexists('Phish', ''))
  | sort by count_ desc
  | 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.