This detection rule identifies adversary behavior involving the exploitation of ELF (Executable and Linkable Format) binaries delivered through known malicious URLs to initiate command execution or payload delivery on Linux-based systems. A SOC team should proactively hunt for this activity in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before these executable threats can establish persistence within the environment.
Threat: elf Total URLs: 11 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://45.38.249.63/data_x86 | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_arm7 | offline | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_arm5 | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_aarch64 | offline | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_arm6 | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_arm4 | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_x86_64 | offline | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_powerpc | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_mips | online | malware_download | 2026-08-14 |
hxxp://45.38.249.63/data_mipsel | online | malware_download | 2026-08-14 |
hxxp://166.0.192.57/loader | offline | malware_download | 2026-08-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["45.38.249.63"]);
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(["45.38.249.63"]);
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 detection rule in an enterprise environment, along with recommended filters or exclusions:
Scenario 1: Automated Software Update Mechanisms
elf (Executable and Linkable Format) signatures within the payload metadata, which URLhaus may flag as suspicious if the specific hash is new to their database but legitimate for the organization.*.microsoft.com, *.adobe.com) or whitelist specific high-fidelity domains used by the IT team’s patching infrastructure.Scenario 2: Scheduled Antivirus Definition Syncs
Scenario 3: Internal DevOps Artifact Retrieval