Teams communication to suspicious external users
Description
This query helps hunt for communication with suspicious external users.
Query · kql
//This query uses MessageEvents to detect bi-directional outbound communication to suspicious external Help Desk\Support representatives MessageEvents | where Timestamp > ago(30d) | where (RecipientDetails contains "help" and RecipientDetails contains "desk") or (RecipientDetails contains "it" and RecipientDetails contains "support") or (RecipientDetails contains "working" and RecipientDetails contains "home") | where IsExternalThread == true | project Timestamp, SenderDisplayName, SenderEmailAddress, RecipientDetails, IsOwnedThread, ThreadType