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

Enjoying ransomware.live? Help us keep tracking ransomware gangs and shipping new features. Support us

YARA Rule: Linux_Ransomware_RedAlert_39642d52.yar

Group: Redalert
Valid Rule

rule Linux_Ransomware_RedAlert_39642d52
{
	meta:
		author = "Elastic Security"
		id = "39642d52-0a4b-48d5-bb62-8f37beb4dc6a"
		fingerprint = "744524ee2ae9e3e232f15b0576cdab836ac0fe3c9925eab66ed8c6b0be3f23d7"
		creation_date = "2022-07-06"
		last_modified = "2022-08-16"
		threat_name = "Linux.Ransomware.RedAlert"
		reference_sample = "039e1765de1cdec65ad5e49266ab794f8e5642adb0bdeb78d8c0b77e8b34ae09"
		severity = 100
		arch_context = "x86"
		scan_context = "file, memory"
		license = "Elastic License v2"
		os = "linux"

	strings:
		$str_ransomnote = "\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\% REDALERT UNIQUE IDENTIFIER START \\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%\\%" ascii fullword
		$str_print = "\t\t\t########\n\t\t\t[ N13V ]\n\t\t\t########\n\n" ascii fullword
		$str_arg = "[info] Catch -t argument. Check encryption time" ascii fullword
		$str_ext = ".crypt658" ascii fullword
		$byte_checkvm = { 48 8B 14 DD ?? ?? ?? ?? 31 C0 48 83 C9 FF FC 48 89 EE 48 89 D7 F2 AE 4C 89 E7 48 F7 D1 E8 }

	condition:
		3 of ( $str_* ) or ( $byte_checkvm and $str_print )
}