This detection identifies adversary activity involving ELF (Executable and Linkable Format) malware distribution through a curated set of 37 known malicious URLs from the URLhaus threat intelligence feed. A SOC team should proactively hunt for these indicators in Azure Sentinel to preemptively block executable downloads that could compromise endpoints before they are widely exploited or added to broader threat lists.
Threat: elf Total URLs: 37 Active URLs: 33
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://172.104.49.49/bot.x86_64 | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.mipsel | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.arm7 | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.aarch64 | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.arm | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.ppc | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.sh4 | online | malware_download | 2026-08-13 |
hxxp://154.90.70.23/mpsl | online | malware_download | 2026-08-13 |
hxxp://172.104.49.49/bot.mips | online | malware_download | 2026-08-13 |
hxxp://172-104-49-49.ip.linodeusercontent.com/bot.mips | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/x86_64 | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/aarch64 | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/sh4 | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/x86 | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/armv4l | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/armv5l | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/armv6l | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/armv7l | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/m68k | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/sparc | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/ppc | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/mips | online | malware_download | 2026-08-13 |
hxxp://160.119.71.134/n2/mpsl | online | malware_download | 2026-08-13 |
hxxp://2.26.48.37/eclipse.mipsel | online | malware_download | 2026-08-13 |
hxxp://2.26.48.37/eclipse.armv7l | online | malware_download | 2026-08-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["2.26.48.37", "172-104-49-49.ip.linodeusercontent.com", "154.90.70.23", "160.119.71.134", "172.104.49.49"]);
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(["2.26.48.37", "172-104-49-49.ip.linodeusercontent.com", "154.90.70.23", "160.119.71.134", "172.104.49.49"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scanner Traffic from Internal Tools
10.20.30.x) or specific hostnames containing keywords like -scanner, -update-server, or domains ending in .qualys.com and .tenable.com.Scenario: Scheduled Software Deployment via Configuration Management
*.artifactory.internal, *.nexus.corp) and occurs during defined maintenance windows (e.g., 02:00–04:00 UTC). Additionally, filter by user agent strings containing “Ansible”, “Chef Client”, or “SMS”.Scenario: CI/CD Pipeline Artifact Downloads