This detection identifies adversary behavior where endpoints initiate downloads from URLs flagged by URLhaus as hosting malware, indicating potential initial access or supply chain compromise via malicious web resources. A SOC team should proactively hunt for this pattern in Azure Sentinel to rapidly isolate infected systems and prevent lateral movement before the downloaded payloads execute within the network environment.
Threat: malware_download Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.228.103.211:38030/i | online | malware_download | 2026-07-29 |
hxxps://orienttaxtile.com/weds/crypted.ps1 | offline | malware_download | 2026-07-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["42.228.103.211"]);
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(["42.228.103.211"]);
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: malware_download rule, along with targeted filtering strategies suitable for an enterprise environment:
Scenario: Automated Security Tool Updates via Cloud Repositories
*.crowdstrike.com, *.microsoft.com) and restrict the rule trigger to exclude traffic originating from known service accounts (e.g., svc-update-agent) or specific host groups labeled “Security Infrastructure.”Scenario: Scheduled Data Backup and Archive Retrieval
malware_download tag./blob/backup-archive or specific S3 bucket prefixes known to be trusted.Scenario: Software Deployment via Configuration Management Tools