Check for Maalware Baazar (abuse.ch) hashes in your mail flow
Description
Check if file hashes published in the recent abuse.ch feed are found in your mail flow scanned by Office 365 ATP.
Query · kql
let abuse_sha256 = (externaldata(sha256_hash: string ) [@"https://bazaar.abuse.ch/export/txt/sha256/recent/"] with (format="txt")) | where sha256_hash !startswith "#" | project sha256_hash; abuse_sha256 | join (EmailAttachmentInfo | where Timestamp > ago(1d) ) on $left.sha256_hash == $right.SHA256 | project Timestamp,SenderFromAddress ,RecipientEmailAddress,FileName,FileType,SHA256,ThreatTypes,DetectionMethods