Malicious Clicks allowed (click-through)
Description
Visualises malicious URL clicks that were allowed through Safe Links over time, helping analysts identify when users bypass security controls and click on malicious content. Based on Defender for Office 365 workbook: https://techcommunity.microsoft.com/blog/microsoftdefenderforoffice365blog/part-2-build-custom-email-security-reports-and-dashboards-with-workbooks-in-micr/4411303
Query · kql
let TimeStart = startofday(ago(30d)); let TimeEnd = startofday(now()); UrlClickEvents | where Timestamp >= TimeStart | where IsClickedThrough == 1 | where isnotempty(ThreatTypes) | make-series Count = count() default = 0 on Timestamp from TimeStart to TimeEnd step 1d | render timechart