This detection identifies adversary activity involving ELF (Executable and Linkable Format) malware distribution through known malicious URLs curated by URLhaus. Proactive hunting in Azure Sentinel is critical to intercept potential command-and-control communications or initial infection vectors before they compromise endpoints with executable payloads.
Threat: elf Total URLs: 13 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.42.213/bins/phantom.arm7 | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.ppc | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.m68k | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.arm6 | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.arm4 | offline | malware_download | 2026-07-22 |
hxxp://129.121.114.124/WsN | offline | malware_download | 2026-07-22 |
hxxp://129.121.114.124/LBLg | offline | malware_download | 2026-07-22 |
hxxp://129.121.114.124/ilEn | offline | malware_download | 2026-07-22 |
hxxp://129.121.114.124/3eRa | offline | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.sh4 | online | malware_download | 2026-07-22 |
hxxp://91.92.42.213/bins/phantom.arm5 | online | malware_download | 2026-07-22 |
hxxp://129.121.114.124/tm8x | offline | malware_download | 2026-07-22 |
hxxp://45.90.163.37/arm4 | online | malware_download | 2026-07-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["91.92.42.213", "45.90.163.37"]);
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(["91.92.42.213", "45.90.163.37"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Software Update Scanners
.elf or .exe) hosted on trusted domains (e.g., update.microsoft.com, downloads.oracle.com). The URLhaus feed may flag these specific update endpoints as “elf” malicious due to shared infrastructure with known threats, even though the traffic is legitimate.*.microsoft.com, *.oracle.com) to the rule’s allow-list.Scenario: Scheduled Antivirus Definition Syncs
Scenario: CI/CD Pipeline Artifact Retrieval