← Back to SOC feed Coverage →

LinuxBillGates

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-26T23:00:00Z · Confidence: medium

Hunt Hypothesis

The LinuxBillGates rule detects potential adversary behavior involving the use of a custom or obfuscated binary that mimics a legitimate Linux process, often used for persistence or execution of malicious payloads. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate stealthy malware that evades traditional detection methods.

YARA Rule

rule LinuxBillGates 
{
    meta:
       Author      = "@benkow_"
       Date        = "2014/08/11" 
       Description = "Strings inside"
       Reference   = "http://www.kernelmode.info/forum/viewtopic.php?f=16&t=3429" 

    strings:
        $a= "12CUpdateGates"
        $b= "11CUpdateBill"

    condition:
        $a and $b
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

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