← 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-09-24T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets the execution of malicious ELF binaries delivered via known URLhaus URLs, indicating an adversary is likely establishing a foothold or deploying payloads on Linux-based assets. Proactively hunting for these indicators in Azure Sentinel is critical to identify compromised workloads or containers that may have been used for lateral movement or data exfiltration before the threat actor can escalate privileges.

IOC Summary

Threat: elf Total URLs: 11 Active URLs: 5

URLStatusThreatDate Added
hxxp://217.60.103.135/x86_64onlinemalware_download2026-09-24
hxxp://217.60.103.135/arm4onlinemalware_download2026-09-24
hxxp://217.60.103.135/arm6onlinemalware_download2026-09-24
hxxp://217.60.103.135/arm7onlinemalware_download2026-09-24
hxxp://217.60.103.135/x86onlinemalware_download2026-09-24
hxxp://176.65.139.214/arm7offlinemalware_download2026-09-24
hxxp://176.65.139.214/x86_64offlinemalware_download2026-09-24
hxxp://176.65.139.214/mipsofflinemalware_download2026-09-24
hxxp://176.65.139.214/mips64offlinemalware_download2026-09-24
hxxp://176.65.139.214/m68kofflinemalware_download2026-09-24
hxxp://176.65.139.214/ppcofflinemalware_download2026-09-24

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["217.60.103.135"]);
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(["217.60.103.135"]);
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

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