This hunt targets adversaries who distribute malware by directing users to download executables from newly identified malicious URLs flagged by URLhaus. Proactively hunting for these specific indicators in Azure Sentinel is critical because early detection of these downloads can prevent initial infection vectors before they escalate into widespread lateral movement or data exfiltration incidents.
Threat: malware_download Total URLs: 5 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.228.192.221:45232/i | online | malware_download | 2026-07-19 |
hxxp://27.28.98.143:54370/i | offline | malware_download | 2026-07-19 |
hxxp://27.44.147.25:46712/i | online | malware_download | 2026-07-19 |
hxxps://deyetechnical.com/winsconsx86.zip | online | malware_download | 2026-07-19 |
hxxp://27.44.147.25:46712/bin.sh | online | malware_download | 2026-07-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["27.44.147.25", "42.228.192.221", "deyetechnical.com"]);
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(["27.44.147.25", "42.228.192.221", "deyetechnical.com"]);
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 four specific false positive scenarios for the URLhaus: malware_download detection rule in an enterprise environment, along with targeted filtering strategies:
Endpoint Management Software Updates
malware_download due to the high volume of traffic and dynamic nature of the URLs.SCCM-Client, JamfPro-Agent) or exclude traffic originating from known management server subnets (e.g., 10.20.50.0/24) accessing trusted vendor domains like .microsoft.com or .jamfsoftware.com.Automated Backup and Archive Retrieval
malware_download signature, particularly when accessing public S3 buckets or Azure Blob Storage endpoints used for off-site replication.backup-srv-01, commvault-agent) accessing cloud storage endpoints.Developer CI/CD Pipeline Artifact Downloads