This detection identifies adversaries leveraging compromised or newly registered domains to distribute malware downloads via six specific malicious URLs flagged by URLhaus. Proactive hunting in Azure Sentinel is critical to rapidly isolate affected endpoints and prevent lateral movement before these malicious payloads execute within the network.
Threat: malware_download Total URLs: 6 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.14.85.100:42355/bin.sh | online | malware_download | 2026-07-30 |
hxxps://gmbh-hunt-dividend-arena.trycloudflare.com/updhfjsbfs.bat | offline | malware_download | 2026-07-30 |
hxxps://firebasestorage.googleapis.com/v0/b/new-era-14dfd/o/Lincoln.ps1?alt=media&token=0b1e9378-0fc3-468d-9a3e-e5c215ea5f49 | offline | malware_download | 2026-07-30 |
hxxp://88.84.222.217:64193/i | online | malware_download | 2026-07-30 |
hxxp://110.36.80.169:39924/i | offline | malware_download | 2026-07-30 |
hxxp://31.56.209.153/release/$bin | offline | malware_download | 2026-07-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["123.14.85.100", "88.84.222.217"]);
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(["123.14.85.100", "88.84.222.217"]);
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 for the URLhaus: malware_download detection rule, including tailored filters and exclusions:
Antivirus Endpoint Definition Updates
*.microsoft.com, *.crowdstrike.com) and filter by process name (e.g., MsMpEng.exe or csfalcon.exe).Scheduled Software Patching Jobs
ccmexec.exe, IvantiAgent.exe) and the URL contains known repository paths (e.g., /updates/, /packages/).Cloud Backup Agent Data Sync