← Back to SOC feed Coverage →

Mumblehard i386 assembly code responsible for decrypting Perl code

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-09-22T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets the execution of Mumblehard i386 assembly routines used to decrypt and execute Perl payloads, a technique often employed by commodity malware to evade static analysis. Proactively hunting for this behavior in Azure Sentinel allows the SOC to identify low-severity, potentially stealthy infections that may serve as initial access vectors or persistence mechanisms before they escalate in severity.

YARA Rule

rule mumblehard_packer
{
    meta:
        description = "Mumblehard i386 assembly code responsible for decrypting Perl code"
        author = "Marc-Etienne M.Leveille"
        date = "2015-04-07"
        reference = "http://www.welivesecurity.com"
        version = "1"

    strings:

	$decrypt = { 31 db [1-10] ba ?? 00 00 00 [0-6] (56 5f | 89 F7) 39 d3 75 13 81 fa ?? 00 00 00 75 02 31 d2 81 c2 ?? 00 00 00 31 db 43 ac 30 d8 aa 43 e2 e2 }

    condition:
        $decrypt
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

References

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar