← Back to SOC feed Coverage →

ExeLockv100

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

Hunt Hypothesis

This rule detects the presence of ExeLock, a file locking utility often used by adversaries to prevent security tools or cleanup scripts from modifying or deleting critical executables. Proactively hunting for this artifact in Azure Sentinel helps identify potential defense evasion tactics where attackers are attempting to lock files to hinder incident response or forensic analysis.

YARA Rule

rule ExeLockv100
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 06 8C C8 8E C0 BE [2] 26 [2] 34 ?? 26 [2] 46 81 [3] 75 ?? 40 B3 ?? B3 ?? F3 }

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