This detection rule identifies adversary behavior where endpoints download known malware from a curated set of twelve malicious URLs flagged by URLhaus. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised assets and prevent lateral movement before the downloaded payloads execute.
Threat: malware_download Total URLs: 12 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://194.116.236.163/38/goodthinkgsforbetterwayscoming.hta/ | offline | malware_download | 2026-07-23 |
hxxps://194.116.236.163/aHR0cDovLzE5NC4xMTYuMjM2LjE2My8zOC9nb29kdGhpbmtnc2ZvcmJldHRlcndheXNjb21pbmcuaHRh.php/ | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/aHR0cDovLzE5NC4xMTYuMjM2LjE2My8zOC9nb29kdGhpbmtnc2ZvcmJldHRlcndheXNjb21pbmcuaHRh.php | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/38/goodthinkgsforbetterwayscoming.hta/ | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/img/img_184307.png/ | offline | malware_download | 2026-07-23 |
hxxps://194.116.236.163/37/newkingisbackgorbesttreatmentsneedforallthismethodsforfind.hta/ | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/35/img_180337.png/ | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/35/weneedbestthingsforeverywheretounderstand.hta/ | offline | malware_download | 2026-07-23 |
hxxp://194.116.236.163/http:/194.116.236.163/35/img_180337.png.php | offline | malware_download | 2026-07-23 |
hxxps://tangentwaves.com/moll.psm | online | malware_download | 2026-07-23 |
hxxp://108.181.197.32:8080/NL-Brute-TITAN.zip | online | malware_download | 2026-07-23 |
hxxps://anus-staylard.xyz/avast_update | offline | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["108.181.197.32", "tangentwaves.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(["108.181.197.32", "tangentwaves.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 specific false positive scenarios and corresponding exclusions for the URLhaus: malware_download Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Software Update Agents
ccmsetup.exe, IntuneManagementExtension.exe, and wsappx where the destination URL contains known vendor domains (e.g., *.microsoft.com, *.update.microsoft.com).Scenario: Scheduled Antivirus Definition Updates
C:\Program Files\CrowdStrike\fsqa.exe, C:\Windows\System32\DefenderSvc) connecting to the vendor’s update endpoints, provided the user context is “SYSTEM” or a dedicated service account.Scenario: Enterprise Content Delivery & Knowledge Base Access