This detection rule identifies adversary activity involving access to specific malicious URLs associated with the 85-137-245-141-9001 threat signature, which often indicates potential phishing campaigns or command-and-control communications. The SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the adversary can establish a persistent foothold in the network.
Threat: 85-137-245-141-9001 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://85.137.245.141:9001/1.exe | online | malware_download | 2026-08-06 |
hxxp://85.137.245.141:9001/2.exe | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 85-137-245-141-9001
let malicious_domains = dynamic(["85.137.245.141"]);
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(["85.137.245.141"]);
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 5 specific false positive scenarios for the URLhaus: 85-137-245-141-9001 Malicious URLs detection rule, including targeted filters and exclusions:
Automated Cloud Backup Synchronization
HostGroup = "Backup_Servers") combined with a filter on the destination port: DestinationPort = 443 AND Direction = Outbound.Third-Party SIEM Log Forwarding
85-137-245-141-9001, legitimate log ingestion traffic will trigger alerts during scheduled high-volume windows (e.g., every 15 minutes).ProcessName = "splunkd.exe" or ProcessName = "datadog-agent.exe", and restrict the exclusion to business hours if the alert is only relevant during off-hours.Scheduled Software License Validation