signature-base
signature-base copied to clipboard
Update/increase max filesize in Suspicious_Size_explorer_exe rule?
Hello, Got some hits on this rule when testing on a Windows 10 desktop. C:\Windows\Explorer.exe seems to be 5007KB in Windows 10...should the max filesize be increased a bit to take this into account and remove FPs for explorer on Windows 10?
rule Suspicious_Size_explorer_exe {
meta:
description = "Detects uncommon file size of explorer.exe"
license = "https://creativecommons.org/licenses/by-nc/4.0/"
author = "Florian Roth"
score = 60
date = "2015-12-21"
noarchivescan = 1
condition:
uint16(0) == 0x5a4d
and filename == "explorer.exe"
and not filepath contains "teamviewer"
and ( filesize < 800KB or filesize > 5000KB )
}
Thanks for the feedback, I will have an update for the rule shortly. See PR #206
Should be resolved by now. If not, please reopen the issue.