This detection identifies adversary activity involving the execution of ELF (Executable and Linkable Format) binaries delivered through known malicious URLs, which often indicates a cross-platform threat or supply chain compromise targeting Linux-based workloads within the Azure environment. Proactively hunting for these specific URL patterns is critical to rapidly isolate potential lateral movement vectors before they exploit containerized services or hybrid infrastructure that may not be fully covered by traditional Windows-centric endpoint detection rules.
Threat: elf Total URLs: 33 Active URLs: 13
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.184.241.245/bins/psh4 | offline | malware_download | 2026-08-30 |
hxxp://91.184.241.245/bins/pmips | offline | malware_download | 2026-08-30 |
hxxp://91.184.241.245/bins/parm6 | offline | malware_download | 2026-08-30 |
hxxp://91.184.241.245/bins/pm68k | offline | malware_download | 2026-08-30 |
hxxp://91.184.241.245/bins/px86 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.x86_64 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.sh4 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.x86 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.spc | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.i686 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.arm6 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.arc | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.mips | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.mpsl | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.m68k | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.i468 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.arm | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.arm5 | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.ppc | offline | malware_download | 2026-08-30 |
hxxp://64.89.163.8/hiddenbin/boatnet.arm7 | offline | malware_download | 2026-08-30 |
hxxp://190.123.46.208/Okami.sparc | online | malware_download | 2026-08-30 |
hxxp://190.123.46.208/Okami.arm4 | online | malware_download | 2026-08-30 |
hxxp://190.123.46.208/Okami.arm5 | online | malware_download | 2026-08-30 |
hxxp://190.123.46.208/Okami.ppc | online | malware_download | 2026-08-30 |
hxxp://190.123.46.208/Okami.ppc440 | online | malware_download | 2026-08-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["190.123.46.208"]);
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(["190.123.46.208"]);
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 5 specific false positive scenarios for the URLhaus: elf Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Software Update Scans by Endpoint Protection Agents
elf file signature databases hosted on URLhaus or similar threat intelligence feeds to update their local malware definitions. These queries often hit URLs tagged with “elf” binaries that are part of the vendor’s own update mechanism but are flagged as potentially malicious due to high traffic volume or new hash signatures.10.50.20.*/ or specific FQDNs like *.falcon.crowdstrike.com) and exclude traffic where the User-Agent string contains keywords such as “CrowdStrike,” “Defender,” or “UpdateService.”Scenario: CI/CD Pipeline Artifact Downloads
.elf executables) from internal artifact repositories (e.g., Nexus Repository, Artifactory) or public package managers (like dl.google.com for Chrome updates). If the pipeline runs on a Linux agent that downloads these binaries directly via HTTP/HTTPS, the URLhaus rule may flag these legitimate build dependencies as malicious.172.16.40.0/24) and filter out URLs containing known artifact repository paths (e.g., /nexus/repository/maven-public/ or /artifacts/builds/).