mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-07 10:28:53 +00:00
22 lines
542 B
Plaintext
22 lines
542 B
Plaintext
|
|
rule ACE_Containing_EXE {
|
|
meta:
|
|
author = "Florian Roth - based on Nick Hoffman' rule - Morphick Inc"
|
|
description = "Looks for ACE Archives containing an exe/scr file"
|
|
date = "2015-09-09"
|
|
score = 50
|
|
strings:
|
|
$header = { 2a 2a 41 43 45 2a 2a }
|
|
$extensions1 = ".exe"
|
|
$extensions2 = ".EXE"
|
|
$extensions3 = ".scr"
|
|
$extensions4 = ".SCR"
|
|
condition:
|
|
$header at 7 and for
|
|
any of ($extensions*): (
|
|
$ in (81..(81+uint16(79)))
|
|
)
|
|
}
|
|
|
|
|