This detection identifies adversary activity where threat actors leverage ELF (Executable and Linkable Format) binaries to distribute malware through newly identified malicious URLs tracked by URLhaus. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent the execution of potentially dangerous ELF payloads before they establish persistence or exfiltrate sensitive data.
Threat: elf Total URLs: 23 Active URLs: 18
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.172.77.129:59541/Mozi.m | offline | malware_download | 2026-07-29 |
hxxp://129.121.110.105/ya4 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_sh4 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_ppc | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.x86 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_i686 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/backup_0729_0324/real_mips | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.i686 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/backup_0729_0324/real_mipsel | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.sh4 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/ssh_brute | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_x86 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.m68k | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_m68k | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/backup_0729_0324/real_x86_64 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.ppc | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_spc | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.spc | online | malware_download | 2026-07-29 |
hxxp://129.121.110.105/RYb | online | malware_download | 2026-07-29 |
hxxp://45.90.163.37//i486 | offline | malware_download | 2026-07-29 |
hxxp://45.90.163.37//powerpc | offline | malware_download | 2026-07-29 |
hxxp://45.90.163.37//x86_64 | offline | malware_download | 2026-07-29 |
hxxp://45.90.163.37//i586 | offline | malware_download | 2026-07-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["129.121.110.105", "91.199.133.133"]);
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(["129.121.110.105", "91.199.133.133"]);
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 |
Scenario: Enterprise Antivirus Signature Updates
.elf extensions that are flagged by URLhaus as “malicious” due to their generic nature, even though they are trusted vendor artifacts.137.254.x.x for CrowdStrike or 131.107.x.x for Microsoft) and URLs containing specific patterns like /updates/definitions or /content/.Scenario: Scheduled Software Deployment via SCCM
.elf based installer binaries for internal line-of-business applications. URLhaus may misinterpret these internal binary transfers as external malicious traffic because the URLs are dynamically generated or hosted on an internal CDN that mimics public hosting structures.sccm-dist-01.corp.local) and whitelist any URL paths containing /site/system/ or /packages/ during the defined maintenance window (e.g., 02:00–04:00 AM).Scenario: CI/CD Pipeline Artifact Retrieval
.elf headers used