False Positive Reduction

This commit is contained in:
Florian Roth 2018-10-19 09:06:10 +02:00
parent 5dfc61f909
commit c8d3a207a8

View File

@ -266,19 +266,22 @@ rule Exe_Cloaked_as_ThumbsDb
rule Fake_AdobeReader_EXE
{
meta:
description = "Detects an fake AdobeReader executable based on filesize OR missing strings in file"
date = "2014-09-11"
license = "https://creativecommons.org/licenses/by-nc/4.0/"
description = "Detects an fake AdobeReader executable based on filesize OR missing strings in file"
date = "2014-09-11"
author = "Florian Roth"
score = 50
score = 50
nodeepdive = 1
nodeepdive = 1
strings:
$s1 = "Adobe Systems" ascii
$s2 = "Adobe Reader" ascii wide
$s1 = "Adobe Systems" ascii
$fp1 = "Adobe Reader" ascii wide
$fp2 = "Xenocode Virtual Appliance Runtime" ascii wide
condition:
uint16(0) == 0x5a4d and
filename matches /AcroRd32.exe/i and
not $s1 in (filesize-2500..filesize)
and not $s2
uint16(0) == 0x5a4d and
filename matches /AcroRd32.exe/i and
not $s1 in (filesize-2500..filesize)
and not 1 of ($fp*)
}
rule Fake_FlashPlayerUpdaterService_EXE