← Back to SOC feed Coverage →

detect Armadill(a variant of RedLeaves) in memory

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

Hunt Hypothesis

This hunt targets the presence of Armadillo, a RedLeaves variant, within system memory to identify early-stage reconnaissance or lateral movement activities characteristic of this threat actor. Proactively hunting for these specific memory artifacts in Azure Sentinel is critical to validate low-severity alerts and ensure rapid containment before the adversary establishes persistent footholds or escalates its operations.

YARA Rule

rule Armadill {
          meta:
            description = "detect Armadill(a variant of RedLeaves) in memory"
            author = "JPCERT/CC Incident Response Group"
            rule_usage = "memory scan"
            reference = "internal research"

          strings:
            $a1 = { C7 ?? ?? 41 72 6D 61 }
            $a2 = { C7 ?? ?? 64 69 6C 6C }

          condition: all of them
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

References

False Positive Guidance

Here are 4 specific false positive scenarios for the Armadill (RedLeaves variant) detection rule, including suggested filters and exclusions:

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