This hunt detects adversary behavior involving the consumption of specific malicious URLs identified by URLhaus (tagged 194-150-166-178), which often indicate early-stage phishing campaigns or command-and-control communications. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify and isolate compromised endpoints before they escalate into broader lateral movement or data exfiltration incidents.
Threat: 194-150-166-178 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://194.150.166.178/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-31 |
hxxp://194.150.166.178/bin/support.client.exe | offline | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 194-150-166-178
let malicious_domains = dynamic(["194.150.166.178"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["194.150.166.178"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 3-5 specific false positive scenarios and corresponding filters for the URLhaus: 194-150-166-178 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Tool Health Checks
194.150.166.178 is a vendor endpoint used for these checks, the agent’s background process (e.g., falcon.sys, SentinelOneService.exe) will trigger this rule during routine maintenance windows.*Falcon*, *SentinelOne*, *MsMpEng.exe) and the Destination Port is 443 (HTTPS) or 80, specifically when initiated during non-business hours (e.g., 02:00–05:00 local time).Scenario: Scheduled Patch Management & Software Updates
194.150.166.178, scheduled jobs running via Task Scheduler (e.g., “Update Agent Sync”) will generate legitimate connections that match the malicious URL signature.Patch-Management security group and filter by Scheduled Task Name containing keywords like “Update”, “Sync”, or