← Back to SOC feed Coverage →

RCryptorv13v14Vaska

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

Hunt Hypothesis

This rule detects the presence of RCryptor ransomware variants (versions 13 and 14) and the Vaska ransomware family, indicating a potential active encryption or staging phase within the environment. Proactively hunting for these specific signatures in Azure Sentinel allows the SOC team to identify compromised hosts or lateral movement artifacts early, mitigating the risk of widespread data encryption before the ransomware completes its execution cycle.

YARA Rule

rule RCryptorv13v14Vaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 55 8B EC 8B 44 24 04 83 E8 4F 68 [4] FF D0 58 59 50 }
	$a1 = { 55 8B EC 8B 44 24 04 83 E8 4F 68 [4] FF D0 58 59 50 B8 [4] 3D [4] 74 06 80 30 ?? 40 EB F3 }

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

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