← Back to SOC feed Coverage →

URLhaus: elf Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-07-25T23:00:00Z · Confidence: medium

Hunt Hypothesis

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.

IOC Summary

Threat: elf Total URLs: 20 Active URLs: 2

URLStatusThreatDate Added
hxxp://31.56.209.70/nz/debugonlinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.m68kofflinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.ppcofflinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.mpslofflinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.mipsofflinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.sh4offlinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.x86_64onlinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.spcofflinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.i686offlinemalware_download2026-07-25
hxxp://31.56.209.70/nz/nz.x86offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.sh4offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.arm5offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.arm6offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.mipsofflinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.arm7offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.mpslofflinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.ppcofflinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.x86offlinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.m68kofflinemalware_download2026-07-25
hxxp://185.228.82.213/bins/morte.arm4offlinemalware_download2026-07-25

KQL: Url Dns Hunt

// 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

KQL: Url Proxy Hunt

// 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

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios and corresponding filters for the “URLhaus: elf Malicious URLs” detection rule in an enterprise environment:

Original source: https://urlhaus.abuse.ch/