detect_rogue_servicesexe_process
Description
This rule detects an anomaly whereby services.exe is not a child process of wininit.exe this could be indicative of a rogue services.exe process. License: https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md.
Query · yara_l
events:
(re.regex($selection.target.process.file.full_path, `.*\\services\.exe`) and not ($selection.principal.process.file.full_path = "C:\\Windows\\System32\\wininit.exe"))
condition:
$selection