This detection rule identifies adversary activity involving newly reported ELF (Executable and Linkable Format) malware distributed via malicious URLs tracked by URLhaus. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints before executable payloads are downloaded and executed, thereby preventing potential lateral movement or data exfiltration.
Threat: elf Total URLs: 5 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://195.137.245.219/systemd | online | malware_download | 2026-08-02 |
hxxp://eclipsebible.com/eclipse.x86_64 | online | malware_download | 2026-08-02 |
hxxp://2.26.48.37/eclipse.x86_64 | offline | malware_download | 2026-08-02 |
hxxp://31.77.227.111/hiddenbin/boatnet.arm | online | malware_download | 2026-08-02 |
hxxp://31.77.227.111/hiddenbin/boatnet.arm7 | online | malware_download | 2026-08-02 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["eclipsebible.com", "31.77.227.111", "195.137.245.219"]);
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(["eclipsebible.com", "31.77.227.111", "195.137.245.219"]);
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 targeted exclusion strategies:
Scenario: Automated Software Update Scanners
.elf binaries) from trusted vendor domains which URLhaus may flag due to high volume or dynamic content generation, triggering the “elf” tag.*.microsoft.com, *.sccm-updates.local). Alternatively, exclude URLs containing query parameters typical of version checks (e.g., ?action=scan or ?version=).Scenario: CI/CD Pipeline Artifact Downloads
.elf format binaries for testing environments. If the pipeline runs on a shared network segment, these legitimate downloads can be misidentified as malicious user-initiated traffic.svc-jenkins-worker, azure-devops-agent). Additionally, filter out URLs containing standard artifact paths like /artifacts/builds/ or /releases/v1/.Scenario: Scheduled Antivirus Definition Updates