← Back to SOC feed Coverage →

PEtitev14

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

Hunt Hypothesis

This rule targets specific malicious or suspicious patterns within Portable Executable (PE) files, potentially indicating the presence of custom malware, trojans, or exploit payloads that evade standard signature-based detection. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify low-severity threats that may be used for initial access or lateral movement before they escalate into more complex attack chains.

YARA Rule

rule PEtitev14
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 66 9C 60 50 8B D8 03 ?? 68 54 BC [2] 6A ?? FF 50 14 8B CC }
	$a1 = { 66 9C 60 50 8B D8 03 00 68 54 BC 00 00 6A 00 FF 50 14 8B CC }

condition:
		$a0 at pe.entry_point or $a1 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 2 string patterns in its detection logic.

False Positive Guidance

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar