Visualize Phishing Detection Reasons
Description
This query visualizes the phishing detection reasons in a piechart. This is based on the EmailPostDeliveryEvents table. This table in the advanced hunting schema contains information about post-delivery actions taken on email messages processed by Microsoft 365. Based on this information the differnt detection reasons are visualized.
Query · kql
EmailPostDeliveryEvents | where ThreatTypes == "Phish" | extend DetectionMethod = tostring(extract(@'Phish":\["(.*?)"]', 1, DetectionMethods)) | summarize TotalEvents = count() by DetectionMethod | render piechart with(title="Phishing Detection Reason Overview")