Contact us Buy Me a Coffee

Sponsored by Hudson Rock Use Hudson Rock's free cybercrime intelligence tools to learn how Infostealer infections are leading to ransomware attacks

YARA Rule: wannacry_memory_ransom.yar

Group: Wannacry
Valid Rule

rule wannacry_memory_ransom : wannacry_memory_ransom
{
	meta:
		description = "Detects WannaCryptor spreaded during 2017-May-12th campaign and variants in memory"
		author = "Blueliv"
		reference = "https://blueliv.com/research/wannacrypt-malware-analysis/"
		date = "2017-05-15"

	strings:
		$s01 = "%08X.eky"
		$s02 = "%08X.pky"
		$s03 = "%08X.res"
		$s04 = "%08X.dky"
		$s05 = "@WanaDecryptor@.exe"

	condition:
		all of them
}