This hunt detects adversaries leveraging known malware download campaigns by identifying user or system interactions with eight specific malicious URLs flagged by URLhaus. Proactively hunting for these indicators in Azure Sentinel is critical to intercept early-stage infection vectors before they compromise endpoints and propagate lateral movement across the network.
Threat: malware_download Total URLs: 8 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://192.159.99.131:8080/loader.exe | offline | malware_download | 2026-07-31 |
hxxps://v-k.com.ua/notepad.b64 | online | malware_download | 2026-07-31 |
hxxps://v-k.com.ua/verifyc.ps1 | online | malware_download | 2026-07-31 |
hxxp://192.255.195.154/80/img_191526.png | online | malware_download | 2026-07-31 |
hxxps://cloudimagehostingupdatesrealted.yzz.me/MSI_PROS.png | online | malware_download | 2026-07-31 |
hxxps://plain-apac-prod-public.komododecks.com/202607/27/h3vOJwAKkxJzFVt89apN/image.png | online | malware_download | 2026-07-31 |
hxxp://204.44.69.222/img/MSI_PRO.png | offline | malware_download | 2026-07-31 |
hxxp://182.126.83.156:41733/i | online | malware_download | 2026-07-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["v-k.com.ua", "plain-apac-prod-public.komododecks.com", "cloudimagehostingupdatesrealted.yzz.me", "192.255.195.154", "182.126.83.156"]);
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(["v-k.com.ua", "plain-apac-prod-public.komododecks.com", "cloudimagehostingupdatesrealted.yzz.me", "192.255.195.154", "182.126.83.156"]);
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 and corresponding filters for the URLhaus: malware_download Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Tool Updates via Cloud Repositories
*.crowdstrike.com, *.microsoft.com, *.sophos.com) where the user agent string contains specific keywords like “CrowdStrikeUpdate” or “Microsoft Defender Update”.Scenario: Scheduled Backup and Archive Retrieval Jobs
*.veeam.com, *.azureedge.net) and the source process is a known scheduled task executable (e.g., Veeam.Backup.Service.exe or AzureStorageSync.exe).Scenario: Third-Party CRM/ERP Data Synchronization