This detection identifies adversary behavior involving the execution of ELF binaries delivered via known malicious URLs, indicating potential supply chain compromises or drive-by downloads targeting Linux workloads. Proactive hunting for these indicators in Azure Sentinel is critical to rapidly isolate affected assets and prevent lateral movement before the malware establishes persistence within the environment.
Threat: elf Total URLs: 10 Active URLs: 10
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://ths.lat/volar.sh4 | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.mips | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.i686 | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.m68k | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.powerpc-440fp | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.x86_64 | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.powerpc | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.mipsel | online | malware_download | 2026-07-18 |
hxxp://ths.lat/volar.i586 | online | malware_download | 2026-07-18 |
hxxp://31.77.227.10/manji.arm7 | online | malware_download | 2026-07-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: elf
let malicious_domains = dynamic(["ths.lat", "31.77.227.10"]);
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(["ths.lat", "31.77.227.10"]);
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 Patch Management Scans
Source_IP IN [EDR_Manager_Range] AND Process_Name = "falcon-sensor.exe").CI/CD Pipeline Artifact Validation
Source_Host LIKE '%jenkins-runner%' OR Destination_Domain = 'urlhaus.abuse.ch') during standard business hours or scheduled maintenance windows.Third-Party SaaS Security Scans