← Back to SOC feed Coverage →

PseudoSigner 01 Microsoft Visual Cpp 70 DLL

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

Hunt Hypothesis

This rule identifies suspicious DLLs that masquerade as legitimate Microsoft Visual C++ 7.0 components, a technique often used by adversaries to bypass signature-based detection and establish persistence or execute malicious code. Proactively hunting for these pseudo-signed binaries in Azure Sentinel helps uncover stealthy implantation or living-off-the-land tactics that may otherwise evade standard integrity checks.

YARA Rule

rule _PseudoSigner_01_Microsoft_Visual_Cpp_70_DLL: PEiD
{
    strings:
        $a = { 55 8D 6C 01 00 81 EC 00 00 00 00 8B 45 90 83 F8 01 56 0F 84 00 00 00 00 85 C0 0F 84 ?? ?? ?? ?? E9 }
    condition:
        $a at pe.entry_point

}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

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