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

12 lines
265 B
Text

rule MokerTrojan
{
meta:
author = "malwarebytes"
reference = "https://blog.malwarebytes.com/threat-analysis/2017/04/elusive-moker-trojan/"
strings:
$mz = "MZ"
$key = {3D FF 24 8B 92 C1 D6 9D}
condition:
$mz at 0 and uint32(uint32(0x3C)) == 0x455 and $key
}