Tunes Unusual Parent Process for cmd.exe rule to exclude oobe activity (#3091)

* Tunes Unusual Parent Process for cmd.exe rule to exclude oobe activity

When dllhost.exe is called with the "/Processid:{CA8C87C1-929D-45BA-94DB-EF8E6CB346AD}" argument it is creating an "OOBE Elevated Object Server"  as per https://strontic.github.io/xcyclopedia/library/clsid_ca8c87c1-929d-45ba-94db-ef8e6cb346ad.html

Out of the box experience is part of the Windows autopilot and therefore should be legitimate behaviour.

* simplified detection logic by utilising process.parent.args

---------

Co-authored-by: Justin Ibarra <16747370+brokensound77@users.noreply.github.com>

(cherry picked from commit ccfc931fbd)
This commit is contained in:
Hilton
2023-09-14 02:51:07 +10:00
committed by github-actions[bot]
parent ab3a15861c
commit 0bc9b126f6
@@ -51,7 +51,8 @@ process where host.os.type == "windows" and event.type == "start" and
"WerFault.exe",
"WUDFHost.exe",
"unsecapp.exe",
"wlanext.exe" )
"wlanext.exe" ) and
not (process.parent.name : "dllhost.exe" and process.parent.args : "/Processid:{CA8C87C1-929D-45BA-94DB-EF8E6CB346AD}")
'''