This detection identifies adversary behavior involving the exploitation of ELF (Executable and Linkable Format) malware distributed via newly identified malicious URLs from the URLhaus threat intelligence feed. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the ELF payloads execute within the network environment.
Threat: elf Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://85.11.167.203/bins/x86_64 | offline | malware_download | 2026-08-29 |
hxxp://85.11.167.203/powerpc-440fp | offline | malware_download | 2026-08-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["85.11.167.203"]);
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(["85.11.167.203"]);
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 and corresponding filters for the URLhaus: elf Malicious URLs rule in an enterprise environment:
Scenario: Automated Software Update Scanners
.elf format on Linux agents or .exe wrappers) from update servers that may be newly registered with URLhaus, triggering the “elf” tag erroneously.10.x.x.x) accessing specific vendor domains such as *.microsoft.com, *.jamfsoftware.com, or *.sccmupdate.microsoft.com.Scenario: CI/CD Pipeline Artifact Retrieval
*.docker.io, *.github.com) and restrict the rule trigger to non-build-time hours or exclude specific service accounts used by CI/CD agents.Scenario: Scheduled Antivirus Definition Updates