← Back to SOC feed Coverage →

RCryptorv13bVaska

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

Hunt Hypothesis

This YARA rule targets the RCryptor ransomware variant, which encrypts files and appends the .vaska extension to extort victims. Proactively hunting for this signature in Azure Sentinel allows the SOC to identify compromised endpoints or staging areas before the encryption process completes, minimizing potential data loss and operational disruption.

YARA Rule

rule RCryptorv13bVaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 61 83 EF 4F 60 68 [4] FF D7 }
	$a1 = { 61 83 EF 4F 60 68 [4] FF D7 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