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_RansomNote_2.yar

Group: Wannacry
Valid Rule

rule WannaCry_RansomNote
{
	meta:
		description = "Detects WannaCry Ransomware Note"
		license = "Detection Rule License 1.1 https://github.com/Neo23x0/signature-base/blob/master/LICENSE"
		author = "Florian Roth (Nextron Systems)"
		reference = "https://goo.gl/HG2j5T"
		date = "2017-05-12"
		hash1 = "4a25d98c121bb3bd5b54e0b6a5348f7b09966bffeec30776e5a731813f05d49e"
		id = "65ce8faf-0981-5382-bc15-f094ccaa9f54"

	strings:
		$s1 = "A:  Don't worry about decryption." fullword ascii
		$s2 = "Q:  What's wrong with my files?" fullword ascii

	condition:
		( uint16( 0 ) == 0x3a51 and filesize < 2KB and all of them )
}