Message with URL listed on OpenPhish delivered into Inbox
Description
This query can be used as a Custom Detection Rule (CDR) to trigger when a potentially malicious email with a URL from OpenPhish was delivered to Inbox
Query · kql
let PhishingURLs = externaldata(url: string)
[
"https://raw.githubusercontent.com/openphish/public_feed/refs/heads/main/feed.txt"
]
with (format="txt"); // CSV and JSON formats are also valid formats if using the premium feeds
EmailUrlInfo
| where Url in (PhishingURLs)
| join EmailEvents on NetworkMessageId
| where LatestDeliveryAction == "Delivered"