08e8d462fe
RED PILL 🔴 💊
28 lines
524 B
Text
28 lines
524 B
Text
rule apt_equation_exploitlib_mutexes {
|
|
|
|
meta:
|
|
|
|
copyright = "Kaspersky Lab"
|
|
description = "Rule to detect Equation group's Exploitation library"
|
|
version = "1.0"
|
|
last_modified = "2015-02-16"
|
|
reference = "https://securelist.com/blog/research/68750/equation-the-death-star-of-malware-galaxy/"
|
|
|
|
|
|
strings:
|
|
|
|
$mz="MZ"
|
|
|
|
$a1="prkMtx" wide
|
|
$a2="cnFormSyncExFBC" wide
|
|
$a3="cnFormVoidFBC" wide
|
|
$a4="cnFormSyncExFBC"
|
|
$a5="cnFormVoidFBC"
|
|
|
|
condition:
|
|
|
|
(($mz at 0) and any of ($a*))
|
|
|
|
}
|
|
|
|
|