This detection targets adversaries leveraging ELF-based malware distribution through compromised or newly registered web endpoints identified by URLhaus. Proactively hunting for these specific malicious URLs in Azure Sentinel is critical to intercept early-stage command-and-control communications and prevent lateral movement before the malware executes on endpoint systems.
Threat: elf Total URLs: 7 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://94.154.43.42/bot.arm6 | online | malware_download | 2026-07-16 |
hxxp://94.154.43.42/bot.x64 | online | malware_download | 2026-07-16 |
hxxp://94.154.43.42/bot.mips | online | malware_download | 2026-07-16 |
hxxp://94.154.43.42/bot.mpsl | online | malware_download | 2026-07-16 |
hxxp://94.154.43.42/bot.x86 | online | malware_download | 2026-07-16 |
hxxp://45.207.196.86/huhu/titanjr.x86_32 | online | malware_download | 2026-07-16 |
hxxp://45.207.196.86/huhu/titanjr.arm | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["94.154.43.42", "45.207.196.86"]);
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(["94.154.43.42", "45.207.196.86"]);
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: elf Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Automated Software Update Scans via WSUS/SCCM
update.microsoft.com and download.windowsupdate.com domains to check for patches. These high-volume, legitimate update endpoints are frequently flagged by URLhaus as “elf” (Executable/Legitimate File) due to their dynamic content delivery networks hosting executable payloads that mimic malware signatures during initial scanning phases.*.update.microsoft.com and *.download.windowsupdate.com when the source IP belongs to the internal WSUS/SCCM server subnet (e.g., 10.x.x.x).Endpoint Protection Real-Time Scanning by CrowdStrike or SentinelOne
Falcon or SentinelOne.**Scheduled Antivirus Definition Updates