← 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-11T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets adversaries leveraging the ELF (Elastic File Loader) framework to distribute malicious payloads or establish persistence through known bad URLs, often used in initial access or lateral movement phases. Proactively hunting for these specific URL patterns in Azure Sentinel allows the SOC to identify compromised endpoints or suspicious network traffic before the ELF framework can fully execute its post-exploitation actions, reducing the dwell time of high-severity threats.

IOC Summary

Threat: elf Total URLs: 14 Active URLs: 14

URLStatusThreatDate Added
hxxp://198.251.85.84:8080/bot_ppc64onlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_s390xonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_armv7lonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_mipsonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_x86_64onlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_mips64elonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_mipselonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_ppc64leonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_armonlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_aarch64onlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_ppconlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_riscv64onlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_x86onlinemalware_download2026-09-11
hxxp://198.251.85.84:8080/bot_mips64onlinemalware_download2026-09-11

KQL: Url Dns Hunt

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