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

11 lines
397 B
Text

rule goziv3: trojan {
meta:
module = "goziv3"
reference = "https://research.checkpoint.com/2020/gozi-the-malware-with-a-thousand-faces/"
strings:
$dec_bss = {D3 C0 83 F3 01 89 02 83 C2 04 FF 4C 24 0C}
$gen_serpent = {33 44 24 04 33 44 24 08 C2 08 00}
condition:
($dec_bss and $gen_serpent) and (uint16(0) == 0x5A4D or uint16(0) == 0x5850 )
}