← Back to SOC feed Coverage →

RCryptorv16dVaska

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

Hunt Hypothesis

This YARA rule targets the RCryptor ransomware variant, specifically identifying the Vaska strain, which indicates an adversary is actively deploying or staging ransomware payloads to encrypt critical data. Proactively hunting for this signature in Azure Sentinel allows the SOC team to detect early-stage ransomware activity on endpoints, enabling rapid isolation and response before the encryption process completes and impacts business operations.

YARA Rule

rule RCryptorv16dVaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 60 90 61 61 80 7F F0 45 90 60 0F 85 1B 8B 1F FF 68 }
	$a1 = { 60 90 61 61 80 7F F0 45 90 60 0F 85 1B 8B 1F FF 68 [4] B8 [4] 90 3D [4] 74 06 80 30 ?? 40 EB F3 }

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

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