This hunt detects adversary behavior involving the consumption of specific malicious web resources identified by URLhaus under tag 185-242-3-87, which often indicate early-stage phishing or command-and-control communications. A SOC team should proactively search for these URLs in Azure Sentinel to rapidly identify and isolate potential compromise vectors before they escalate into broader lateral movement or data exfiltration incidents.
Threat: 185-242-3-87 Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://185.242.3.87/w3.sh | online | malware_download | 2026-08-31 |
hxxp://185.242.3.87/run.sh | online | malware_download | 2026-08-31 |
hxxp://185.242.3.87/check3.sh | online | malware_download | 2026-08-31 |
hxxp://185.242.3.87/softwaretech | online | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 185-242-3-87
let malicious_domains = dynamic(["185.242.3.87"]);
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(["185.242.3.87"]);
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 for the URLhaus: 185-242-3-87 Malicious URLs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Automated Patch Management Scans
SCCM service account (e.g., NT AUTHORITY\SYSTEM) or specific hostnames ending in .configmgr.microsoft.com. Additionally, filter out alerts occurring strictly between 02:00 and 05:00 local time on weekdays to align with maintenance windows.Scenario: Cloud Backup Agent Connectivity
VEEAM-SERVICE or Rubrik-Agent) and filter URLs containing specific backup domains like .veeam.com, .rubrik.com, or the organization’s dedicated S3 bucket endpoint.Scenario: Third-Party Threat Intelligence Feeds