This hunt hypothesis targets adversaries leveraging known malicious URLs from the URLhaus database to deliver payloads associated with the 94-154-32-8 malware family, which often serve as initial access vectors for phishing or drive-by attacks. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of traffic to these specific malicious domains can prevent lateral movement and data exfiltration before the infection spreads across the enterprise network.
Threat: 94-154-32-8 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://94.154.32.8/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-17 |
hxxps://94.154.32.8/bin/support.client.exe | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 94-154-32-8
let malicious_domains = dynamic(["94.154.32.8"]);
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(["94.154.32.8"]);
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 4 specific false positive scenarios and corresponding exclusion strategies for the URLhaus: 94-154-32-8 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Patching Tools Scanning Vendor Archives
10.20.50.x) and destination URLs containing specific vendor domains (e.g., *.microsoft.com, *.adobe.com). Alternatively, exclude traffic where the User-Agent string contains “SCCM” or “Ivanti”.Scenario: Scheduled Backup Agents Querying Cloud Storage Endpoints
*.s3.amazonaws.com).**Scenario: Endpoint Security Agents Performing Cloud Threat Intelligence Lookups