← Back to SOC feed Coverage →

ZCodeWin32PEProtectorv101

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

Hunt Hypothesis

This rule identifies the presence of ZCode Win32 PE Protector, a commercial code obfuscation tool often leveraged by adversaries to mask malicious payloads and evade static analysis. Proactively hunting for this signature in Azure Sentinel allows the SOC team to detect potentially obfuscated executables on endpoints before they are executed or further manipulated, reducing the risk of stealthy malware deployment.

YARA Rule

rule ZCodeWin32PEProtectorv101
{
      meta:
		author="malware-lu"
strings:
		$a0 = { E9 12 00 00 00 [12] E9 FB FF FF FF C3 68 [4] 64 FF 35 }

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