← Back to SOC feed Coverage →

WWPACKv300v301Relocationspack

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

Hunt Hypothesis

This rule detects the presence of executable files packed with the WWPACK v300 or v301 compressor, a technique often used by adversaries to obscure binary structure and complicate static analysis during initial access or payload execution. Proactively hunting for these specific packers in Azure Sentinel helps identify potentially obfuscated malware that may be evading signature-based detections or hiding in low-severity alerts within the environment.

YARA Rule

rule WWPACKv300v301Relocationspack
{
      meta:
		author="malware-lu"
strings:
		$a0 = { BE [2] BA [2] BF [2] B9 [2] 8C CD 8E DD 81 ED [2] 06 06 8B DD 2B DA 8B D3 FC }

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