← Back to SOC feed Coverage →

Winrar SFX Archive

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

Hunt Hypothesis

This rule detects the execution of WinRAR self-extracting archives, a common technique adversaries use to deliver payloads or establish initial access by disguising executable code within compressed files. Proactively hunting for these events in Azure Sentinel helps identify potential supply chain compromises or lateral movement attempts that may bypass standard file type restrictions.

YARA Rule

rule winrar_sfx : Packer
{
	meta:
		author="Kevin Falcoz"
		date_create="18/03/2013"
		description="Winrar SFX Archive"

	strings:
		$signature1={00 00 53 6F 66 74 77 61 72 65 5C 57 69 6E 52 41 52 20 53 46 58 00}

	condition:
		$signature1
}

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