← Back to SOC feed Coverage →

PseudoSigner01MicrosoftVisualC70DLLAnorganix

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

Hunt Hypothesis

This rule identifies potentially malicious or obfuscated DLLs that masquerade as standard Microsoft Visual C++ 7.0 components, a technique often used by adversaries to blend in with legitimate system binaries and evade initial static analysis. Proactively hunting for these pseudo-signed artifacts in Azure Sentinel helps detect early-stage implantation or persistence mechanisms that leverage trusted file attributes to establish a foothold within the environment.

YARA Rule

rule PseudoSigner01MicrosoftVisualC70DLLAnorganix
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 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 [4] E9 }

condition:
		$a0 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/packer.yar