← Back to SOC feed Coverage →

Detection of CryptoLocker Variants

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

Hunt Hypothesis

This detection rule identifies adversary behavior consistent with CryptoLocker variants by monitoring for specific file encryption patterns and ransom note generation indicative of active ransomware campaigns. Proactively hunting for these indicators in Azure Sentinel is critical to validate early-stage infection signals before they escalate into widespread data unavailability, even when initial alert severity remains low.

YARA Rule

rule CryptoLocker_rule2
{
meta:
	author = "Christiaan Beek, [email protected]"
	date = "2014-04-14"
	description = "Detection of CryptoLocker Variants"
strings:
	$string0 = "2.0.1.7" wide
	$string1 = "    <security>"
	$string2 = "Romantic"
	$string3 = "ProductVersion" wide
	$string4 = "9%9R9f9q9"
	$string5 = "IDR_VERSION1" wide
	$string6 = "button"
	$string7 = "    </security>"
	$string8 = "VFileInfo" wide
	$string9 = "LookFor" wide
	$string10 = "      </requestedPrivileges>"
	$string11 = " uiAccess"
	$string12 = "  <trustInfo xmlns"
	$string13 = "last.inf"
	$string14 = " manifestVersion"
	$string15 = "FFFF04E3" wide
	$string16 = "3,31363H3P3m3u3z3"
condition:
	12 of ($string*)
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 17 string patterns in its detection logic.

False Positive Guidance

Here are 5 specific false positive scenarios for the Detection of CryptoLocker Variants rule in an enterprise environment, along with recommended filters or exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/malware/RANSOM_Cryptolocker.yar