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