This detection identifies adversary behavior where attackers leverage newly identified ELF (Executable and Linkable Format) malware distributed via malicious URLs to compromise systems through drive-by downloads or phishing campaigns. A SOC team should proactively hunt for these indicators in Azure Sentinel because ELF files often represent the initial entry point for sophisticated attacks, allowing analysts to block threats before they execute and propagate within the network.
Threat: elf Total URLs: 27 Active URLs: 27
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://130.12.182.77/main.sh4musl | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.sparc64 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/f | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.sh4aeb | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.e500mc | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-i686 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.s390x | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-64-v2 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips32r6el | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-core2 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-64 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips64el-n32 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-64-v3 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.power8le | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-64-i7 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.x86-64-v4 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips32r5el | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.ppc440fp | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.e6500 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.power8 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.sparcv8 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips64-n32 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.m68k-68xxx | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips64r6el-n32 | online | malware_download | 2026-08-07 |
hxxp://130.12.182.77/main.mips32 | online | malware_download | 2026-08-07 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["115.51.80.33", "130.12.182.77"]);
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(["115.51.80.33", "130.12.182.77"]);
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 Update and Patching via Enterprise Management Tools
.elf executable packages for patching agents or drivers that URLhaus may flag as generic “elf” threats due to their widespread distribution.*.microsoft.com, *.ivanti.net) and filter out URLs containing known vendor paths like /updates/ or /packages/.Scenario: Scheduled Antivirus Definition and Threat Intelligence Sync
.elf signature files or behavioral analysis modules that are tagged by URLhaus but represent legitimate, trusted traffic from the vendor’s cloud infrastructure.*.crowdstrike.com, *.sentinelone.net) and filter based on the HTTP User-Agent string containing the agent name (e.g., Falcon-Service or SentinelOne-Sensor).Scenario: DevOps CI/CD Pipeline Artifact Retrieval
.elf), and dependencies from public registries like **Docker