This hypothesis posits that adversaries are leveraging ELF-based malware to distribute payloads through a specific set of six known malicious URLs identified by URLhaus. The SOC team should proactively hunt for these indicators within Azure Sentinel to detect early-stage command-and-control communications or initial infection vectors before they escalate into broader lateral movements across the cloud environment.
Threat: elf Total URLs: 6 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://skript.club/eclipse.m68k | online | malware_download | 2026-07-20 |
hxxp://skript.club/eclipse.powerpc-440fp | online | malware_download | 2026-07-20 |
hxxp://skript.club/eclipse.mips | online | malware_download | 2026-07-20 |
hxxp://skript.club/eclipse.sh4 | online | malware_download | 2026-07-20 |
hxxp://skript.club/eclipse.powerpc | online | malware_download | 2026-07-20 |
hxxp://skript.club/eclipse.x86_64 | online | malware_download | 2026-07-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["skript.club"]);
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(["skript.club"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Antivirus Definition Updates via Background Service
elf (common in Linux-based management nodes or hybrid environments) and may trigger on URLs known to host security tools that occasionally share IP ranges with threat intelligence feeds.svc-av-updater) accessing the vendor’s official update domains (e.g., *.crowdstrike.com, update.microsoft.com). Additionally, filter out URLs where the HTTP User-Agent header contains the specific AV product version string.CI/CD Pipeline Artifact Retrieval
elf binaries for container orchestration. If the registry’s public-facing URL is flagged by URLhaus due to a shared infrastructure component or a recent certificate change, legitimate build jobs will trigger alerts every time they fetch base images containing ELF executables.*.ecr.amazonaws.com, harbor.internal.corp). Ensure the filter applies specifically to the GET HTTP method used for artifact downloads.Patch Management Deployment Agents