← Back to SOC feed Coverage →

Win32-variant of Chicken ident for both dropper and dropped file

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

Hunt Hypothesis

The detection identifies potential deployment of a Win32 variant of the Chicken ident malware through both the dropper and the dropped file, indicating possible adversary activity in the environment. SOC teams should proactively hunt for this behavior to detect early-stage malware execution and prevent lateral movement or data exfiltration in Azure Sentinel.

YARA Rule

rule ChickenDOS
{

    meta:
        author = "Jason Jones <[email protected]>"
        description = "Win32-variant of Chicken ident for both dropper and dropped file"
        source = "https://github.com/arbor/yara/blob/master/chicken.yara"

    strings:
        $pdb1 = "\\Chicken\\Release\\svchost.pdb"
        $pdb2 = "\\IntergrateCHK\\Release\\IntergrateCHK.pdb"
        $str2 = "fake.cf"
        $str3 = "8.8.8.8"
        $str4 = "Processor(%d)\\"
        $str5 = "DbProtectSupport"
        $str1 = "dm1712/`jvpnpkte/bpl"
        $str6 = "InstallService NPF %d"
        $str7 = "68961"
        $str8 = "InstallService DbProtectSupport %d"
        $str9 = "C:\\Program Files\\DbProtectSupport\\npf.sys"
   
    condition:
        ($pdb1 or $pdb2) and 5 of ($str*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 11 string patterns in its detection logic.

False Positive Guidance

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