This detection targets adversary behavior involving the execution of ELF binaries delivered via known malicious web endpoints, indicating potential lateral movement or initial access through compromised software repositories. Proactively hunting for these specific URL patterns in Azure Sentinel is critical to identify early-stage threats before they establish persistence, leveraging the high-fidelity threat intelligence from URLhaus to reduce false positives and accelerate incident response.
Threat: elf Total URLs: 8 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://217.60.195.187/bins/pmpsl | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/x86_64 | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/pspc | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/pm68k | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/pppc | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/psh4 | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/px86 | online | malware_download | 2026-07-17 |
hxxp://45.207.196.86/huhu/titanjr.mips | online | malware_download | 2026-07-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["217.60.195.187", "45.207.196.86"]);
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(["217.60.195.187", "45.207.196.86"]);
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 for the URLhaus: elf Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Automated Software Supply Chain Updates via JFrog Artifactory
elf binary packages or update metadata, it triggers a high volume of requests to URLs containing “elf” in the path or query parameters. If these internal artifact repositories are hosted on subdomains that share naming conventions with known malware families, they may be flagged by URLhaus as suspicious.10.20.50.0/24) destined for internal artifact repository domains (e.g., *.artifactory.local or specific S3 buckets) where the URL path contains /elf/.Endpoint Security Agent Self-Healing and Definition Sync
elf signature definitions and executable patches. If the detection logic strictly matches the string “elf” without context, these legitimate vendor communication URLs (e.g., updates.crowdstrike.com/.../elf-signatures) may be flagged as malicious if the URLhaus database has recently tagged similar patterns from a different threat actor.csagent.exe