← Back to SOC feed Coverage →

Detects a pagemgr.exe as mentioned in the CrowdStrike report

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

Hunt Hypothesis

The hypothesis is that the execution of pagemgr.exe, as noted in the CrowdStrike report, may indicate the presence of a sophisticated adversary leveraging this process for persistence or command and control activities. A SOC team should proactively hunt for this behavior in Azure Sentinel to identify potential advanced threats that may evade traditional detection methods.

YARA Rule

rule COZY_FANCY_BEAR_pagemgr_Hunt 
{

    meta:
        description = "Detects a pagemgr.exe as mentioned in the CrowdStrike report"
        author = "Florian Roth"
        reference = "https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/"
        date = "2016-06-14"

    strings:
        $s1 = "pagemgr.exe" wide fullword

    condition:
        uint16(0) == 0x5a4d and 1 of them
}

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/malware/APT_fancybear_dnc.yar