← Back to SOC feed Coverage →

InstallStub32bit

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

Hunt Hypothesis

This detection identifies the execution of 32-bit install stubs, which adversaries frequently leverage to establish persistence or deliver initial payloads during the early stages of an attack chain. Proactively hunting for this behavior in Azure Sentinel is essential because low-severity installation events often serve as subtle indicators of compromise that can be overlooked by standard alerting but are critical for mapping attacker movement and preventing lateral expansion.

YARA Rule

rule InstallStub32bit
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 55 8B EC 81 EC 14 ?? 00 00 53 56 57 6A 00 FF 15 [4] 68 [4] FF 15 [4] 85 C0 74 29 }

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

Here are 4 specific false positive scenarios for the InstallStub32bit detection rule in an enterprise environment, along with suggested filters and exclusions:

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