Improved certutil rule

This commit is contained in:
Florian Roth 2017-08-30 20:19:09 +02:00
parent 76ebe6c67b
commit d3a90dfd17

View File

@ -57,3 +57,29 @@ rule JavaScript_Run_Suspicious {
all of them
}
/* Certutil Rule Improved */
private rule MSI {
strings:
$r1 = "SummaryInformation" wide
condition:
uint16(0) == 0xCFD0 and $r1
}
rule Certutil_Decode_OR_Download {
meta:
description = "Certutil Decode"
author = "Florian Roth"
reference = "Internal Research"
score = 40
date = "2017-08-29"
strings:
$a1 = "certutil -decode " ascii wide
$a2 = "certutil -decode " ascii wide
$a3 = "certutil.exe -decode " ascii wide
$a4 = "certutil.exe -decode " ascii wide
$a5 = "certutil -urlcache -split -f http" ascii wide
$a6 = "certutil.exe -urlcache -split -f http" ascii wide
condition:
( not MSI and filesize < 700KB and 1 of them )
}