Top 10 Users clicking on malicious URLs in Teams
Description
This query visualizes Top 10 Users clicking on malicious Phish or Malware URLs in Teams.
Query · kql
//Top 10 Users clicking on malicious URLs in Teams
UrlClickEvents
| where Workload =="Teams" and ThreatTypes in ("Phish","Malware")
| summarize Blocked = countif(ActionType =="ClickBlocked"), Allowed = countif(ActionType =="ClickAllowed"), PendingVerdict = countif(ActionType =="UrlScanInProgress"), Error = countif(ActionType =="UrlErrorPage"), ClickedThrough = countif(IsClickedThrough)by AccountUpn
| top 10 by Blocked desc