This detection identifies adversary behavior involving the exploitation of ELF (Executable and Linkable Format) malware distributed via malicious URLs, which often indicates initial access or command-and-control activities targeting Linux-based endpoints. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised systems and prevent lateral movement, given that ELF-specific threats are frequently overlooked in environments primarily optimized for Windows-centric detection logic.
Threat: elf Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.114.124/CcDE | online | malware_download | 2026-07-23 |
hxxp://129.121.114.124/RGno | online | malware_download | 2026-07-23 |
hxxp://129.121.114.124/GD8 | online | malware_download | 2026-07-23 |
hxxp://129.121.114.124/QRV | online | malware_download | 2026-07-23 |
hxxp://129.121.114.124/iZ5O | online | malware_download | 2026-07-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["129.121.114.124"]);
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.114.124"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Patching via Microsoft Update Catalog
.elf executable binaries from the official go.microsoft.com or download.windowsupdate.com domains. These files often contain embedded URLs that URLhaus flags as “elf” type, triggering a hit despite being legitimate patch payloads.*.go.microsoft.com, *.download.windowsupdate.com) from the URLhaus alert scope when the file extension is .elf or the process name matches wuauclt.exe.Scenario: Scheduled Antivirus Definition Updates
C:\Program Files\CrowdStrike\fs_qr.exe or MsMpEng.exe). Additionally, whitelist the vendor’s update servers (e.g., *.crowdstrike.com, *.microsoft.com) if they are consistently generating this specific tag.Scenario: DevOps CI/CD Pipeline Artifact Retrieval