← Back to SOC feed Coverage →

WinZip32bitSFXv6xmodule

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

Hunt Hypothesis

This rule identifies the presence of WinZip 32-bit self-extracting archive (SFX) modules, which adversaries frequently use to package and deliver malicious payloads while evading initial static analysis. Proactively hunting for these artifacts allows the SOC team to uncover hidden executable components that may have been dropped during lateral movement or initial access, ensuring that low-severity but potentially critical staging files are not overlooked in the Azure Sentinel environment.

YARA Rule

rule WinZip32bitSFXv6xmodule
{
      meta:
		author="malware-lu"
strings:
		$a0 = { FF 15 [3] 00 B1 22 38 08 74 02 B1 20 40 80 38 00 74 10 38 08 74 06 40 80 38 00 75 F6 80 38 00 74 01 40 33 C9 [4] FF 15 }

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