This hunt targets adversaries who are actively distributing malware by directing users to download payloads from newly identified malicious URLs flagged by URLhaus. Proactively hunting for these specific indicators in Azure Sentinel is critical because early detection of these download behaviors allows the SOC team to isolate compromised endpoints before widespread infection occurs across the organization.
Threat: malware_download Total URLs: 4 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://116.140.173.225:55136/i | online | malware_download | 2026-07-01 |
hxxp://182.113.31.70:50018/bin.sh | online | malware_download | 2026-07-01 |
hxxp://116.140.173.225:55136/bin.sh | online | malware_download | 2026-07-01 |
hxxps://github.com/VideoPad-Free-for-PC/.github/archive/refs/heads/main.zip | offline | malware_download | 2026-07-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["182.113.31.70", "116.140.173.225"]);
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(["182.113.31.70", "116.140.173.225"]);
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 5 specific false positive scenarios for the URLhaus: malware_download detection rule in an enterprise environment, along with suggested filters or exclusions:
Antivirus Definition Updates via Central Management Console
*.crowdstrike.com, go.microsoft.com, .symantec.com) specifically on ports 443, where the User-Agent string contains the specific AV agent name and the file extension is .cab, .msi, or .exe.Automated Software Deployment via Configuration Management Tools
svc-ansible-deploy, SCCM-DP01) accessing internal artifact repository URLs that are known mirrors of trusted software vendors.IT Helpdesk Remote Support Sessions