Phish and Malware received by user vs total amount of email


Description

How much phish and malware emails vs good emails received the user in the given timeframe.

Query · kql

let UserToAnalyze="john.doe@contoso.com";
EmailEvents
| where RecipientEmailAddress==UserToAnalyze
| project RecipientEmailAddress, ThreatTypes
| evaluate pivot(ThreatTypes)
| sort by RecipientEmailAddress asc
Raw source Phish and Malware received by user vs total amount of email · KQL
Esc
Published by Azure/Azure-Sentinel ↗, licensed under MIT ↗. Reproduced here unmodified.
id: 229ec9f6-05cc-483d-b3dc-35f47575a5aa
name: Phish and Malware received by user vs total amount of email
description: |
  How much phish and malware emails vs good emails received the user in the given timeframe.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - EmailEvents
query: |
  let UserToAnalyze="john.doe@contoso.com";
  EmailEvents
  | where RecipientEmailAddress==UserToAnalyze
  | project RecipientEmailAddress, ThreatTypes
  | evaluate pivot(ThreatTypes)
  | sort by RecipientEmailAddress asc

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.