This detection identifies adversary behavior where threat actors leverage newly discovered ELF (Executable and Linkable Format) malware distribution via malicious URLs to establish a foothold within the network. A SOC team should proactively hunt for these indicators in Azure Sentinel because early identification of these specific executable payloads allows for immediate containment before they can execute lateral movement or data exfiltration attacks.
Threat: elf Total URLs: 20 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.56.209.70/nz/debug | online | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.m68k | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.ppc | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.mpsl | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.mips | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.sh4 | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.x86_64 | online | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.spc | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.i686 | offline | malware_download | 2026-07-25 |
hxxp://31.56.209.70/nz/nz.x86 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.sh4 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.arm5 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.arm6 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.mips | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.arm7 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.mpsl | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.ppc | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.x86 | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.m68k | offline | malware_download | 2026-07-25 |
hxxp://185.228.82.213/bins/morte.arm4 | offline | malware_download | 2026-07-25 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["31.56.209.70"]);
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(["31.56.209.70"]);
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” detection rule in an enterprise environment:
Scenario: Automated Software Update Scanners
Group: Update_Servers) or filter out URLs containing specific vendor domains such as *.microsoft.com, *.crowdstrike.com, and *.ivanti.com.Scenario: CI/CD Pipeline Artifact Downloads
jenkins-agent-01, gitlab-runner) or filter URLs matching internal registry patterns like *.artifacts.internal.corp and *.docker-registry.local.Scenario: Scheduled Antivirus Definition Updates