← Back to SOC feed Coverage →

RCryptorv16bv16cVaska

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 YARA rule targets the RCryptor ransomware variant, specifically identifying its distinctive code patterns to detect the presence of this encryption tool within the environment. Proactively hunting for this signature in Azure Sentinel allows the SOC team to identify potential ransomware staging or early execution phases before the adversary initiates widespread data encryption.

YARA Rule

rule RCryptorv16bv16cVaska
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 8B C7 03 04 24 2B C7 80 38 50 0F 85 1B 8B 1F FF 68 }
	$a1 = { 8B C7 03 04 24 2B C7 80 38 50 0F 85 1B 8B 1F FF 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