← Back to SOC feed Coverage →

RCryptorv16Vaska

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

Hunt Hypothesis

This detection targets the execution of the RCryptorv16Vaska ransomware variant, which adversaries often deploy to encrypt critical data and disrupt operations within Azure environments. Proactively hunting for this signature allows the SOC team to identify early-stage infection indicators before full encryption occurs, enabling rapid containment and minimizing potential business impact.

YARA Rule

rule RCryptorv16Vaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 33 D0 68 [4] FF D2 }
	$a1 = { 33 D0 68 [4] FF D2 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

Here are 5 specific false positive scenarios for the RCryptorv16Vaska detection rule, including suggested filters and exclusions:

Original source: https://github.com/Yara-Rules/rules/blob/main/packers/packer.yar