← Back to SOC feed Coverage →

Shrinker32

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

Hunt Hypothesis

This rule detects the presence of Shrinker32, a 32-bit executable packer often used by adversaries to compress binaries and obscure their code from static analysis tools. Proactively hunting for this indicator in Azure Sentinel allows the SOC team to identify potentially packed malware or trojans that may have been deployed on endpoints, enabling early intervention before the packed payload executes or evades detection.

YARA Rule

rule Shrinker32
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 55 8B EC 56 57 75 65 68 00 01 00 00 E8 F1 E6 FF FF 83 C4 04 }

condition:
		$a0
}

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