This hunt detects adversaries leveraging known malicious URLs to initiate malware downloads onto user endpoints, a common initial access vector that often bypasses standard perimeter defenses. Proactively hunting for these specific URLhaus-tagged indicators in Azure Sentinel is critical to identify early-stage compromise and prevent the lateral spread of downloaded payloads before they execute within the environment.
Threat: malware_download Total URLs: 9 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.68.95.197:48234/bin.sh | online | malware_download | 2026-08-26 |
hxxp://61.137.204.83:48836/bin.sh | online | malware_download | 2026-08-26 |
hxxp://42.178.45.124:57472/bin.sh | online | malware_download | 2026-08-26 |
hxxp://27.44.145.84:42072/bin.sh | online | malware_download | 2026-08-26 |
hxxp://216.9.224.48/40/bFjIhIb.txt | offline | malware_download | 2026-08-26 |
hxxps://repositoryserver.dpdns.org/linuxsh | offline | malware_download | 2026-08-26 |
hxxps://paste.mangsud.org/raw/ea2e61cc | offline | malware_download | 2026-08-26 |
hxxps://repositoryserver.dpdns.org/cronsys | offline | malware_download | 2026-08-26 |
hxxps://repositoryserver.dpdns.org/killersys | offline | malware_download | 2026-08-26 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["103.68.95.197", "61.137.204.83", "27.44.145.84", "42.178.45.124"]);
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(["103.68.95.197", "61.137.204.83", "27.44.145.84", "42.178.45.124"]);
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 detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Antivirus Endpoint Definition Updates
malware_download due to high entropy in the payload or shared hosting infrastructure.*.microsoft.com, *.crowdstrike.com) where the user agent string contains “Antivirus” or specific service accounts like AV-Update-Svc.Scheduled Software Patching and Deployment
Patch-Deployer or Intune-AutoUpdate accessing specific internal repository domains (e.g., *.artifacts.internal.corp) during maintenance windows (e.g., 01:00–05:00).Cloud Backup and Data Archiving Jobs