This detection identifies adversary behavior where endpoints access known malicious URLs associated with ELF (Executable and Linkable Format) binaries, indicating potential command-and-control communication or malware distribution from Linux-based systems. Proactive hunting for these indicators in Azure Sentinel is critical to rapidly isolate compromised workloads and prevent lateral movement before the ELF payloads execute their full attack chain.
Threat: elf Total URLs: 9 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://205.237.110.232/proxy/mips | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/mpsl | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxyarm | offline | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/arm7 | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/x86 | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/arm5 | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/arm | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy/aarch64 | online | malware_download | 2026-07-13 |
hxxp://205.237.110.232/proxy232/mips | offline | malware_download | 2026-07-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["205.237.110.232"]);
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(["205.237.110.232"]);
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: elf Malicious URLs rule in an enterprise environment, along with suggested filters and exclusions:
Endpoint Protection Console Updates via Microsoft Update Catalog
go.microsoft.com domain. These URLs often contain dynamic parameters that match the “elf” signature pattern used by URLhaus, specifically when the download package includes embedded ELF binaries for cross-platform agents.Microsoft Defender Antivirus Service process (MsMpEng.exe) or whitelist the specific subdomain go.microsoft.com combined with the HTTP status code 200.Scheduled Java Runtime Environment (JRE) Patching
javadl.oracle.com or update.microsoft.com. If the downloaded archive contains an ELF executable wrapper (common in Linux-to-Windows hybrid deployments), it may trigger the detection even though the source is trusted.javaw.exe or java.exe when accessing URLs containing the path segment /update/, ensuring the destination IP resolves to Oracle’s known ASN (AS31984).Internal CI/CD Artifact Retrieval