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: MAL_RANSOM_DarkBit_Feb23_1.yar

Group: Darkbit
Valid Rule

rule MAL_RANSOM_DarkBit_Feb23_1
{
	meta:
		description = "Detects indicators found in DarkBit ransomware"
		author = "Florian Roth"
		reference = "https://twitter.com/idonaor1/status/1624703255770005506?s=12&t=mxHaauzwR6YOj5Px8cIeIw"
		date = "2023-02-13"
		score = 75
		id = "d209a0c2-f649-5fb1-9ecd-f1c35caa796f"

	strings:
		$s1 = ".onion" ascii
		$s2 = "GetMOTWHostUrl"
		$x1 = "hus31m7c7ad.onion"
		$x2 = "iw6v2p3cruy"
		$xn1 = "You will receive decrypting key after the payment."

	condition:
		uint16( 0 ) == 0x5a4d and filesize < 10MB and ( 1 of ( $x* ) or 2 of them ) or 4 of them or ( filesize < 10MB and $xn1 )
}