← Back to SOC feed Coverage →

Rooter code features

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-29T11:00:01Z · Confidence: medium

Hunt Hypothesis

This detection rule identifies anomalous rooter code execution patterns that may indicate early-stage persistence mechanisms or unauthorized system modifications within Azure workloads. Proactively hunting for these low-severity signals in Azure Sentinel allows the SOC team to distinguish benign operational activities from subtle adversary footholds before they escalate into critical incidents.

YARA Rule

rule RooterCode : Rooter Family 
{
    meta:
        description = "Rooter code features"
        author = "Seth Hardy"
        last_modified = "2014-07-10"
    
    strings:
        // xor 0x30 decryption
        $ = { 80 B0 ?? ?? ?? ?? 30 40 3D 00 50 00 00 7C F1 }
    
    condition:
        any of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

False Positive Guidance

Here are 5 specific false positive scenarios for the Rooter code features detection rule in an enterprise environment, along with suggested filters or exclusions:

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