This detection identifies adversary activity involving newly discovered ELF (Executable and Linkable Format) malware distributed through malicious URLs tracked by URLhaus. Proactive hunting is essential in Azure Sentinel to rapidly isolate compromised endpoints before these executable payloads can establish persistence or initiate lateral movement within the network.
Threat: elf Total URLs: 10 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://2.26.81.46/pandora.x86_64 | online | malware_download | 2026-08-15 |
hxxp://62.60.249.165/main_arm6 | offline | malware_download | 2026-08-15 |
hxxp://62.60.249.165/main_arm7 | online | malware_download | 2026-08-15 |
hxxp://62.60.249.165/scanner | online | malware_download | 2026-08-15 |
hxxp://62.60.249.165/main_m68k | online | malware_download | 2026-08-15 |
hxxp://62.60.249.165/main_arm5 | online | malware_download | 2026-08-15 |
hxxp://105.186.143.37:55447/Mozi.a | offline | malware_download | 2026-08-15 |
hxxp://111.127.232.94:58633/Mozi.m | offline | malware_download | 2026-08-15 |
hxxp://218.0.112.226:51471/Mozi.a | offline | malware_download | 2026-08-15 |
hxxp://62.60.249.165/main_ppc | online | malware_download | 2026-08-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["2.26.81.46", "62.60.249.165"]);
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.81.46", "62.60.249.165"]);
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 recommended filters and exclusions tailored for an enterprise environment:
Scenario: Automated Software Update Scans by Endpoint Protection Agents
10.50.20.0/24) or exclude requests where the User-Agent string contains keywords like CrowdStrike, Defender, or SentinelOne.Scenario: Scheduled “elf” Artifact Ingestion by SIEM Threat Intelligence Modules
svc-siem-intel) or filter out events where the source IP matches the dedicated threat intelligence gateway (e.g., 192.168.50.15).Scenario: DevOps CI/CD Pipeline Artifact Verification