← Back to SOC feed Coverage →

RCryptorv1Vaska

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

Hunt Hypothesis

This rule identifies the presence of the RCryptor ransomware variant, which typically encrypts files and appends a specific extension to lock user access to critical data. Proactively hunting for this signature allows the SOC team to detect early-stage infections or dormant payloads before the encryption process begins, minimizing potential data loss and operational disruption.

YARA Rule

rule RCryptorv1Vaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 90 58 90 50 90 8B 00 90 3C 50 90 58 0F 85 67 D6 EF 11 50 68 }
	$a1 = { 90 58 90 50 90 8B 00 90 3C 50 90 58 0F 85 67 D6 EF 11 50 68 [4] 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