2018-01-31 22:26:23 +00:00
|
|
|
/*
|
|
|
|
Yara Rule Set
|
|
|
|
Author: Florian Roth
|
|
|
|
Date: 2018-01-24
|
2018-01-31 22:56:02 +00:00
|
|
|
Identifier: Lotus Blossom Elise Malware
|
2018-01-31 22:26:23 +00:00
|
|
|
Reference: https://community.rsa.com/community/products/netwitness/blog/2018/01/30/apt32-continues-asean-targeting
|
|
|
|
*/
|
|
|
|
|
2018-01-31 22:27:11 +00:00
|
|
|
import "pe"
|
|
|
|
|
2018-01-31 22:26:23 +00:00
|
|
|
/* Rule Set ----------------------------------------------------------------- */
|
|
|
|
|
2018-01-31 22:56:02 +00:00
|
|
|
rule Elise_Jan18_1 {
|
2018-01-31 22:26:23 +00:00
|
|
|
meta:
|
|
|
|
description = "Detects Elise malware samples - fake Norton Security NavShExt.dll"
|
2018-08-26 10:47:41 +00:00
|
|
|
license = "https://creativecommons.org/licenses/by-nc/4.0/"
|
2018-01-31 22:26:23 +00:00
|
|
|
author = "Florian Roth"
|
|
|
|
reference = "https://twitter.com/blu3_team/status/955971742329135105"
|
|
|
|
date = "2018-01-24"
|
|
|
|
hash1 = "6dc2a49d58dc568944fef8285ad7a03b772b9bdf1fe4bddff3f1ade3862eae79"
|
|
|
|
strings:
|
|
|
|
$s1 = "NavShExt.dll" fullword wide
|
|
|
|
$s2 = "Norton Security" fullword wide
|
|
|
|
|
|
|
|
$a1 = "donotbotherme" fullword ascii
|
|
|
|
condition:
|
|
|
|
uint16(0) == 0x5a4d and filesize < 250KB and (
|
|
|
|
pe.imphash() == "e9478ee4ebf085d1f14f64ba96ef082f" or
|
|
|
|
( 1 of ($s*) and $a1 )
|
|
|
|
)
|
|
|
|
}
|