← Back to SOC feed Coverage →

PrikormkaDropper

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 detection identifies adversary activity where a malicious dropper executes to stage additional payloads, leveraging the PrikormkaDropper YARA signature to capture early-stage infection indicators. Proactively hunting for this behavior in Azure Sentinel is essential to uncover stealthy initial access vectors that may evolve into more severe threats before they trigger high-severity alerts.

YARA Rule

rule PrikormkaDropper
{
    meta:
        id = "a31f8050-360d-5057-875c-64ba6b7ac79c"
    strings:
        $kd1 = "KDSTORAGE" wide
        $kd2 = "KDSTORAGE_64" wide
        $kd3 = "KDRUNDRV32" wide
        $kd4 = "KDRAR" wide

        $bin1 = {69 65 04 15 00 14 1E 4A 16 42 08 6C 21 61 24 0F}
        $bin2 = {76 6F 05 04 16 1B 0D 5E 0D 42 08 6C 20 45 18 16}
        $bin3 = {4D 00 4D 00 43 00 00 00 67 00 75 00 69 00 64 00 56 00 47 00 41 00 00 00 5F 00 73 00 76 00 67 00}

        $inj1 = "?AVCinj2008Dlg@@" ascii
        $inj2 = "?AVCinj2008App@@" ascii
    condition:
        uint16(0) == 0x5a4d and ((any of ($bin*)) or (3 of ($kd*)) or (all of ($inj*)))
}

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 PrikormkaDropper detection rule in an enterprise environment, along with suggested filters:

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