Sneed-Reactivity/yara-mikesxrs/Mandiant/Ransomware_Win_DARKSIDE_v1__1.yar
Sam Sneed 08e8d462fe OMG ISTG PLS WORK
RED PILL 🔴 💊
2024-07-25 12:43:35 -05:00

13 lines
741 B
Text

rule Ransomware_Win_DARKSIDE_v1__1
{
meta:
author = "FireEye"
reference = "https://www.mandiant.com/resources/shining-a-light-on-darkside-ransomware-operations"
date_created = "2021-03-22"
description = "Detection for early versions of DARKSIDE ransomware samples based on the encryption mode configuration values"
md5 = "1a700f845849e573ab3148daef1a3b0b"
strings:
$consts = { 80 3D [4] 01 [1-10] 03 00 00 00 [1-10] 03 00 00 00 [1-10] 00 00 04 00 [1-10] 00 00 00 00 [1-30] 80 3D [4] 02 [1-10] 03 00 00 00 [1-10] 03 00 00 00 [1-10] FF FF FF FF [1-10] FF FF FF FF [1-30] 03 00 00 00 [1-10] 03 00 00 00 }
condition:
(uint16(0) == 0x5A4D and uint32(uint32(0x3C)) == 0x00004550) and $consts
}