This detection identifies adversary behavior where endpoints initiate downloads from URLs flagged by URLhaus as hosting active malware, signaling potential initial access or lateral movement via compromised web resources. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate infected assets and prevent the spread of newly discovered threats before they establish persistence within the network.
Threat: malware_download Total URLs: 24 Active URLs: 17
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://210.208.110.221:38824/i | online | malware_download | 2026-08-09 |
hxxp://47.95.255.56:6610/linux | online | malware_download | 2026-08-09 |
hxxp://61.54.194.76:45113/bin.sh | offline | malware_download | 2026-08-09 |
hxxp://42.178.26.93:60244/bin.sh | offline | malware_download | 2026-08-09 |
hxxp://182.121.178.215:39984/i | offline | malware_download | 2026-08-09 |
hxxp://47.121.138.211:6609/linux | online | malware_download | 2026-08-09 |
hxxp://175.148.29.181:47643/i | online | malware_download | 2026-08-09 |
hxxp://182.116.113.119:44177/bin.sh | offline | malware_download | 2026-08-09 |
hxxp://42.178.26.93:60244/i | offline | malware_download | 2026-08-09 |
hxxp://194.28.62.99:10819/i | online | malware_download | 2026-08-09 |
hxxp://42.53.72.145:33612/bin.sh | online | malware_download | 2026-08-09 |
hxxp://42.86.172.171:41089/i | online | malware_download | 2026-08-09 |
hxxp://175.172.13.19:60669/bin.sh | online | malware_download | 2026-08-09 |
hxxp://163.142.95.27:59432/i | online | malware_download | 2026-08-09 |
hxxp://194.28.62.99:10819/bin.sh | online | malware_download | 2026-08-09 |
hxxp://120.84.214.126:36545/i | online | malware_download | 2026-08-09 |
hxxp://123.9.241.164:43002/i | online | malware_download | 2026-08-09 |
hxxp://42.85.6.186:59524/i | online | malware_download | 2026-08-09 |
hxxp://42.225.206.253:49336/bin.sh | online | malware_download | 2026-08-09 |
hxxp://42.178.164.205:52529/i | online | malware_download | 2026-08-09 |
hxxp://119.184.7.234:46382/bin.sh | online | malware_download | 2026-08-09 |
hxxp://42.53.51.109:44329/i | online | malware_download | 2026-08-09 |
hxxp://182.121.228.235:44677/i | offline | malware_download | 2026-08-09 |
hxxp://182.116.113.119:44177/i | offline | malware_download | 2026-08-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["210.208.110.221", "42.53.51.109", "47.95.255.56", "42.178.164.205", "42.85.6.186", "47.121.138.211", "175.172.13.19", "123.9.241.164", "42.86.172.171", "175.148.29.181", "119.184.7.234", "42.53.72.145", "163.142.95.27", "120.84.214.126", "194.28.62.99", "42.225.206.253"]);
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(["210.208.110.221", "42.53.51.109", "47.95.255.56", "42.178.164.205", "42.85.6.186", "47.121.138.211", "175.172.13.19", "123.9.241.164", "42.86.172.171", "175.148.29.181", "119.184.7.234", "42.53.72.145", "163.142.95.27", "120.84.214.126", "194.28.62.99", "42.225.206.253"]);
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 Malicious URLs detection rule, along with suggested filters or exclusions:
Antivirus Definition Updates via Cloud Repositories
*.microsoft.com, *.crowdstrike.com) where the user agent string contains specific keywords like DefenderUpdate or FalconSensor.Software Deployment via Configuration Management Tools
/ccmsetup, /packages) and restrict the rule to exclude traffic initiated by service accounts (e.g., DOMAIN\SCCM_SVC or DOMAIN\Ansible_Wk).Scheduled Backup and Archive Retrieval Jobs
malware_download tag even though the content is benign data.