← Back to SOC feed Coverage →

Winkriptv10

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 rule identifies the presence of Winkript, a Windows PowerShell-based ransomware strain, by matching its specific code patterns within memory or script files. Proactively hunting for this indicator allows the SOC to detect early-stage ransomware deployment or persistence mechanisms before encryption occurs, reducing the potential impact on Azure-hosted workloads.

YARA Rule

rule Winkriptv10
{
      meta:
		author="malware-lu"
strings:
		$a0 = { 33 C0 8B B8 00 [3] 8B 90 04 [3] 85 FF 74 1B 33 C9 50 EB 0C 8A 04 39 C0 C8 04 34 1B 88 04 39 41 3B CA 72 F0 58 }

condition:
		$a0 at pe.entry_point
}

Deployment Notes

This YARA rule can be deployed in the following contexts:

This rule contains 1 string patterns in its detection logic.

False Positive Guidance

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