← Back to SOC feed Coverage →

SecuPackv15

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 hypothesis targets the presence of the SecuPack v15 packer, a technique often used by adversaries to compress or obfuscate malicious payloads to evade static analysis and signature-based detection. Proactively hunting for this specific packer in Azure Sentinel allows the SOC team to identify potentially hidden or modified executables before they can be executed, reducing the risk of low-severity threats that may serve as initial access vectors or part of a larger attack chain.

YARA Rule

rule SecuPackv15
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 55 8B EC 83 C4 F0 53 56 57 33 C0 89 45 F0 B8 CC 3A 40 ?? E8 E0 FC FF FF 33 C0 55 68 EA 3C 40 ?? 64 FF 30 64 89 20 6A ?? 68 80 [3] 6A 03 6A ?? 6A 01 [3] 80 }

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