This hunt targets adversary behavior where endpoints initiate downloads from a curated set of 29 known malicious URLs specifically associated with malware distribution campaigns. Proactively hunting for these indicators in Azure Sentinel is critical to identify early-stage infections and block lateral movement before the downloaded payloads execute within the organization’s network.
Threat: malware_download Total URLs: 29 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://85.11.167.200/n2/mossad.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/sora.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/hiddenbin/nerv.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/main.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/bot.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bot.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/nerv.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/bot.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/nerv.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/kia.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/kimwolf.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/hiddenbin/ducky.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/aisuru.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/main.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/ducky.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/mossad.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/kia.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/sora.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/hiddenbin/aisuru.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/hiddenbin/boatnet.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/hiddenbin/kia.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/mossad.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bins/sorrow.x86_64 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/bin/kia.x86 | offline | malware_download | 2026-06-28 |
hxxp://85.11.167.200/tadashi.x86_64 | offline | malware_download | 2026-06-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["85.11.167.200"]);
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(["85.11.167.200"]);
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 for the URLhaus: malware_download detection rule in an enterprise environment, along with suggested filters and exclusions:
Automated Patch Management Scans
*.microsoft.com, *.crowdstrike.com). Additionally, filter out traffic where the User-Agent string contains “Ivanti” or “Defender”.Scheduled Software Deployment Jobs
svc-sccm-deploy, ansible-runner) and restrict the rule to only trigger on user-initiated browser sessions, excluding background service ports (e.g., exclude destination ports other than 80/443 if the tool uses custom ports).IT Helpdesk Remote Support Sessions