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

Hunt Hypothesis

This detection identifies adversary behavior where attackers leverage newly identified ELF (Executable and Linkable Format) malicious URLs to distribute executable payloads that may initiate command execution or lateral movement within the network. A SOC team should proactively hunt for these specific URL patterns in Azure Sentinel because early identification of ELF-tagged threats enables rapid containment before malicious executables compromise endpoints or exfiltrate sensitive data.

IOC Summary

Threat: elf Total URLs: 7 Active URLs: 5

URLStatusThreatDate Added
hxxp://94.154.43.68/bins/kla.shofflinemalware_download2026-07-26
hxxp://103.161.17.92/ohshit.shonlinemalware_download2026-07-26
hxxp://130.12.209.147:55604/Mozi.monlinemalware_download2026-07-26
hxxp://110.37.97.32:49108/Mozi.aofflinemalware_download2026-07-26
hxxp://220.158.234.220/armonlinemalware_download2026-07-26
hxxp://220.158.234.220/arm6onlinemalware_download2026-07-26
hxxp://220.158.234.220/mpslonlinemalware_download2026-07-26

KQL: Url Dns Hunt

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

False Positive Scenarios for “URLhaus: elf Malicious URLs” Rule

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