This hunt detects adversary behavior where endpoints access known malicious URLs identified by URLhaus, specifically targeting threats associated with the IP address 178.16.55.154 to identify potential command and control or phishing activities. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised assets and prevent lateral movement before the adversary can establish a persistent foothold within the network.
Threat: 178-16-55-154 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://178.16.55.154/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-06 |
hxxps://178.16.55.154/bin/support.client.exe | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 178-16-55-154
let malicious_domains = dynamic(["178.16.55.154"]);
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(["178.16.55.154"]);
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 specific false positive scenarios and corresponding filters for the URLhaus: 178-16-55-154 Malicious URLs detection rule:
Scenario: Automated Security Scanner Traffic
10.20.5.10 for Qualys) or filter by Process Name if the traffic originates from a specific service account (e.g., QualysPC.exe).Scenario: Scheduled Backup and Cloud Sync Operations
178-16-55-154.02:00 - 06:00 UTC) combined with an exclusion on specific Process Paths such as C:\Program Files\Microsoft Office\root\Office16\OneDrive.exe or C:\Program Files\Veeam\Veeam Backup and Replication\vbagent.exe.Scenario: Third-Party API Integration for CRM/ERP Systems