Cisco Umbrella - Connection to Unpopular Website Detected
Description
'Detects first connection to an unpopular website (possible malicious payload delivery).'
Query · kql
let domain_lookBack= 14d; let timeframe = 1d; let top_million_list = Cisco_Umbrella | where EventType == "proxylogs" | where TimeGenerated > ago(domain_lookBack) and TimeGenerated < ago(timeframe) | extend Hostname = parse_url(UrlOriginal)["Host"] | summarize count() by tostring(Hostname) | top 1000000 by count_ | summarize make_list(Hostname); Cisco_Umbrella | where EventType == "proxylogs" | where TimeGenerated > ago(timeframe) | extend Hostname = parse_url(UrlOriginal)["Host"] | where Hostname !in (top_million_list) | extend Message = "Connect to unpopular website (possible malicious payload delivery)" | project Message, SrcIpAddr, DstIpAddr,UrlOriginal, TimeGenerated