Top malicious URLs clicked by users in Teams
Description
This query helps hunt for top malicious URLs clicked by users in Teams
Query · kql
//This query shows the top 20 URL's that have a detection associated with it and the most ammount of clicks registered from Microsoft Teams UrlClickEvents | where ThreatTypes !="" and Workload =="Teams" | summarize count() by Url, ThreatTypes, ActionType, Workload | project Url, ThreatTypes, ActionType, Workload, ClickCount=count_ | top 20 by ClickCount