Fake Replies
Description
Use this query to find spoofed reply emails that contain certain keywords in the subject. The emails are also checked for a link to a document in Google Docs. These attacks have been observed leading to ransomware
Query · kql
let SubjectTerms = pack_array('onus','equired','all','urvey','eb', 'eport','you','nation','me','itting','book','ocument','ill');
EmailEvents
| where EmailDirection == "Inbound"
| where Subject startswith "RE:"
| where Subject has_any(SubjectTerms)
| join EmailUrlInfo on $left.NetworkMessageId == $right.NetworkMessageId
| where Url startswith "https://docs.google.com/document/"