Minor changes to rule FP exclusions

This commit is contained in:
Florian Roth 2017-09-29 08:47:22 +02:00
parent f15d1fef2a
commit 8b3a138995
2 changed files with 2 additions and 2 deletions

View File

@ -2906,7 +2906,7 @@ rule mimikatz_lsass_mdmp
strings:
$lsass = "System32\\lsass.exe" wide nocase
condition:
(uint32(0) == 0x504d444d) and $lsass and filesize > 50000KB and not filename matches /^WER/
(uint32(0) == 0x504d444d) and $lsass and filesize > 50000KB and not filename matches /WER/
}
rule wce

View File

@ -300,7 +300,7 @@ rule APT_Cloaked_PsExec
$s1 = "Sysinternals PsExec" wide fullword
condition:
uint16(0) == 0x5a4d and $s0 and $s1
and not filename matches /^(psexec.exe|PSEXESVC.EXE)$/is
and not filename matches /(psexec.exe|PSEXESVC.EXE)$/is
and not filepath matches /RECYCLER\\S-1/
}