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.
Threat: elf Total URLs: 7 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://94.154.43.68/bins/kla.sh | offline | malware_download | 2026-07-26 |
hxxp://103.161.17.92/ohshit.sh | online | malware_download | 2026-07-26 |
hxxp://130.12.209.147:55604/Mozi.m | online | malware_download | 2026-07-26 |
hxxp://110.37.97.32:49108/Mozi.a | offline | malware_download | 2026-07-26 |
hxxp://220.158.234.220/arm | online | malware_download | 2026-07-26 |
hxxp://220.158.234.220/arm6 | online | malware_download | 2026-07-26 |
hxxp://220.158.234.220/mpsl | online | malware_download | 2026-07-26 |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Scenario: Automated Software Deployment via Microsoft Endpoint Configuration Manager (SCCM)
SCCM-ManagementPoint01) or distribution point FQDNs where the HTTP User-Agent string contains “Microsoft Endpoint Configuration Manager” and the destination URL path ends in .msi, .exe, or /packages/.Scenario: Scheduled Antivirus Definition Updates via CrowdStrike Falcon
updates.falcon.crowdstrike.com or content.falcon.crowdstrike.com.Scenario: CI/CD Pipeline Artifact Retrieval by Jenkins