This detection identifies adversary behavior where endpoints interact with known ELF (Executable and Linkable Format) malware distribution channels via specific malicious URLs flagged by URLhaus. Proactive hunting in Azure Sentinel is critical to intercept early-stage supply chain compromises or drive-by downloads targeting Linux workloads before they execute persistent payloads within the cloud environment.
Threat: elf Total URLs: 13 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://45.90.163.37/GOONGANGONTOP/i468 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.mpsl | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.x86_64 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.arm7 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.mips | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.sh4 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.spc | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.m68k | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.x86 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.ppc | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.arm | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.arm5 | offline | malware_download | 2026-07-08 |
hxxp://141.11.88.126/bins/sora.arm6 | offline | malware_download | 2026-07-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["141.11.88.126", "45.90.163.37"]);
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(["141.11.88.126", "45.90.163.37"]);
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:
Automated Software Update Scans by Endpoint Protection Agents
svc-crowdstrike, LocalSystem) or filter out connections where the User-Agent header contains strings like CrowdStrike-Telemetry or SentinelOne-Updater.Scheduled Patch Management and Repository Synchronization
*.microsoft.com, *.sccm.local) and restrict the alert severity during scheduled maintenance windows (e.g., 02:00–04:00 UTC) for hosts belonging to the “Patch-Management” asset group.CI/CD Pipeline Artifact Builds