← Back to SOC feed Coverage →

Detects ELF Linux/Torte infection

yara LOW Yara-Rules
community
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 Yara-Rules →
Retrieved: 2026-06-30T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis posits that adversaries are actively deploying ELF-based Linux malware to establish persistent footholds within containerized or server workloads, often evading initial signature-based defenses due to its low-severity classification. Proactive hunting in Azure Sentinel is critical to uncover these stealthy infections early, ensuring that subtle behavioral anomalies indicative of Torte variants are identified before they escalate into broader lateral movement threats.

YARA Rule

rule ELF_Linux_Torte_domains {
	meta:
		author = "@mmorenog,@yararules"
		description = "Detects ELF Linux/Torte infection"
		ref1 = "http://blog.malwaremustdie.org/2016/01/mmd-0050-2016-incident-report-elf.html"
	strings:
		$1 = "pages.touchpadz.com" ascii wide nocase
		$2 = "bat.touchpadz.com" ascii wide nocase
		$3 = "stat.touchpadz.com" ascii wide nocase
		$4 = "sk2.touchpadz.com" ascii wide nocase

	condition:
		any of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 4 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the ELF Linux/Torte detection rule in an enterprise environment, along with recommended filters or exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/MALW_Torte_ELF.yar