This detection identifies adversary behavior involving the distribution of ELF (Executable and Linkable Format) malware through newly identified malicious URLs tracked by URLhaus. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate potential Linux-based threats before they compromise cloud infrastructure or hybrid endpoints.
Threat: elf Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://waf.proxytunnel.co:889/gg11 | online | malware_download | 2026-08-10 |
hxxp://94.154.43.60/fallen.arm7 | offline | malware_download | 2026-08-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["waf.proxytunnel.co"]);
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(["waf.proxytunnel.co"]);
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 exclusions for the URLhaus: elf Malicious URLs detection rule in an enterprise environment:
Scenario: Legitimate software updates from trusted vendors (e.g., Microsoft Update, Adobe Creative Cloud) downloading ELF executable patches.
.elf binaries or installers containing embedded ELF structures from official vendor domains.*.update.microsoft.com, *.adobe.com) and exclude traffic where the HTTP User-Agent contains specific strings like “Microsoft-Update” or “Adobe-CC”.Scenario: Internal DevOps pipelines executing containerized builds that download ELF binaries from internal artifact repositories.
/artifacts, /docker-images, or /builds.Scenario: Enterprise Endpoint Detection and Response (EDR) agents performing scheduled signature definition updates.
falcon.crowdstrike.com) and filter out URLs where the file extension is .cab or .zip containing ELF payloads, as these are standard update formats.Scenario: Scheduled administrative tasks involving remote script