← Back to SOC feed Coverage →

WinZip32bitSFXv8xmodule

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-13T11: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 execute malicious payloads while evading basic file extension checks. Proactively hunting for these artifacts allows the SOC to detect potential initial access or lateral movement activities where attackers leverage legitimate compression tools to stage executables on endpoints within the Azure Sentinel environment.

YARA Rule

rule WinZip32bitSFXv8xmodule
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 53 FF 15 [3] 00 B3 22 38 18 74 03 80 C3 FE 8A 48 01 40 33 D2 3A CA 74 0A 3A CB 74 06 8A 48 01 40 EB F2 38 10 74 01 40 [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