← Back to SOC feed Coverage →

PrikormkaEarlyVersion

yara LOW signature-base
florian-roth
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 signature-base →
Retrieved: 2026-08-03T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt hypothesis targets adversaries deploying early-stage Prikormka malware variants that exhibit distinct file signatures and behavioral patterns before full maturation. Proactive hunting for these indicators within Azure Sentinel is essential to identify and contain nascent threats during their initial infection phase, thereby minimizing potential lateral movement and impact on the enterprise environment.

YARA Rule

rule PrikormkaEarlyVersion
{
    meta:
        id = "c93ef2a7-72e2-584f-beb3-95e62e020eb2"
    strings:
        $str1 = "IntelRestore" ascii fullword
        $str2 = "Resent" wide fullword
        $str3 = "ocp8.1" wide fullword
        $str4 = "rsfvxd.dat" ascii fullword
        $str5 = "tsb386.dat" ascii fullword
        $str6 = "frmmlg.dat" ascii fullword
        $str7 = "smdhost.dll" ascii fullword
        $str8 = "KDLLCFX" wide fullword
        $str9 = "KDLLRUNDRV" wide fullword
    condition:
        uint16(0) == 0x5a4d and (2 of ($str*))
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 9 string patterns in its detection logic.

False Positive Guidance

Here are 4 specific false positive scenarios for the PrikormkaEarlyVersion detection rule, along with targeted filters and exclusions:

Original source: https://github.com/Neo23x0/signature-base/blob/main/yara/apt_prikormka.yar