mirror of
https://github.com/valitydev/signature-base.git
synced 2024-11-06 18:15:20 +00:00
SYS Driver negative matches
This commit is contained in:
parent
07e14acbd0
commit
0a28b3e0cb
@ -14,6 +14,8 @@
|
||||
Copyright and related rights waived via https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
*/
|
||||
|
||||
import "pe"
|
||||
|
||||
private rule WINDOWS_UPDATE_BDC
|
||||
{
|
||||
condition:
|
||||
@ -463,3 +465,19 @@ rule APT_SUSP_Solarwinds_Orion_Config_Anomaly_Dec20 {
|
||||
and $s1
|
||||
and not $fp1
|
||||
}
|
||||
|
||||
rule SUSP_System32_SYS_Driver_Jan21_1 {
|
||||
meta:
|
||||
description = "Detects a suspicious *.sys files in System32 folder apart from Microsoft's own drivers"
|
||||
author = "Florian Roth"
|
||||
reference = "https://twitter.com/richinseattle/status/1353983520973090816"
|
||||
date = "2021-01-26"
|
||||
score = 60
|
||||
type = "file"
|
||||
nodeepdive = 1
|
||||
condition:
|
||||
extension == ".sys" and
|
||||
filepath matches /^C:\\Windows\\System32$/i and
|
||||
not filename matches /^win32/ and
|
||||
pe.number_of_signatures < 1
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user