This detection identifies adversary behavior where endpoints access known malicious URLs associated with ELF (Executable and Linkable Format) binaries, indicating potential Linux-based malware execution or command-and-control communication. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised Linux workloads before they can establish persistence or exfiltrate sensitive data from the environment.
Threat: elf Total URLs: 16 Active URLs: 7
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.114.124/RZt | offline | malware_download | 2026-07-21 |
hxxp://129.121.114.124/rDe | offline | malware_download | 2026-07-21 |
hxxp://129.121.114.124/6zq | online | malware_download | 2026-07-21 |
hxxp://129.121.110.105/Wznp | online | malware_download | 2026-07-21 |
hxxp://129.121.110.105/Tc2 | offline | malware_download | 2026-07-21 |
hxxp://129.121.114.124/2z2 | offline | malware_download | 2026-07-21 |
hxxp://129.121.110.105/oDh | online | malware_download | 2026-07-21 |
hxxp://129.121.110.105/2qr | offline | malware_download | 2026-07-21 |
hxxp://129.121.110.105/jSfh | offline | malware_download | 2026-07-21 |
hxxp://129.121.114.124/EdYO | offline | malware_download | 2026-07-21 |
hxxp://129.121.114.124/K6U | online | malware_download | 2026-07-21 |
hxxp://129.121.114.124/30HR | online | malware_download | 2026-07-21 |
hxxp://129.121.110.105/msH | offline | malware_download | 2026-07-21 |
hxxp://129.121.110.105/hXz8 | online | malware_download | 2026-07-21 |
hxxp://129.121.110.105/KXV | online | malware_download | 2026-07-21 |
hxxp://129.121.114.124/8Bn | offline | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["129.121.114.124", "129.121.110.105"]);
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", "129.121.110.105"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Automated Patch Management Scans
NT AUTHORITY\SYSTEM on SCCM clients) targeting known vendor IP ranges or domains ending in .update.microsoft.com, .adobe.com, and .ivanti.com.Container Orchestration Image Pulls
alpine:latest or ubuntu:20.04) as suspicious ELF traffic if the registry’s IP reputation is shared with compromised nodes.10.x.x.x/24) communicating specifically with the internal container registry domain (e.g., registry.internal.enterprise.local) and standard public registries on port 443.Legacy Backup Agent Synchronization