← Back to SOC feed Coverage →

InnoSetupModule

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-05T23:00:00Z · Confidence: medium

Hunt Hypothesis

This rule identifies the presence of Inno Setup modules, which are commonly embedded in installers to facilitate the execution of arbitrary code or file operations during the installation process. Proactively hunting for these modules allows the SOC team to detect potential supply chain compromises or unauthorized installer modifications that could lead to persistent access or privilege escalation within the environment.

YARA Rule

rule InnoSetupModule
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 49 6E 6E 6F 53 65 74 75 70 4C 64 72 57 69 6E 64 6F 77 00 00 53 54 41 54 49 43 }
	$a1 = { 55 8B EC 83 C4 ?? 53 56 57 33 C0 89 45 F0 89 45 ?? 89 45 ?? E8 [2] FF FF E8 [2] FF FF E8 [2] FF FF E8 [2] FF FF E8 [2] FF FF }

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

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