← Back to SOC feed Coverage →

MALW TinyShell backconnect ELF

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 hunt targets adversaries deploying the TinyShell ELF malware to establish covert outbound connections from Linux workloads within the Azure Sentinel environment. Proactively hunting for this behavior is critical because, despite its low severity classification, early detection of these backconnect sessions can prevent lateral movement and data exfiltration before the malware escalates to a higher threat level.

YARA Rule

rule MALW_TinyShell_backconnect_ELF {
 meta:
    date = "2018-02-10"
    author = "@unixfreaxjp"
 condition:
    is__elf
    and priv01
    and ((priv02)
      or ((priv03)
        or (priv04)))
    and filesize < 100KB
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 4 specific false positive scenarios for the MALW TinyShell backconnect ELF detection rule in an enterprise environment, along with recommended filtering strategies:

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