mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
Improved certutil rule
This commit is contained in:
parent
76ebe6c67b
commit
d3a90dfd17
@ -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 )
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user