|
2 | 2 | creation_date = "2020/11/19" |
3 | 3 | integration = ["endpoint", "windows"] |
4 | 4 | maturity = "production" |
5 | | -updated_date = "2025/08/26" |
| 5 | +updated_date = "2025/12/11" |
6 | 6 |
|
7 | 7 | [rule] |
8 | 8 | author = ["Elastic"] |
@@ -102,17 +102,21 @@ process where host.os.type == "windows" and event.type == "start" and |
102 | 102 | "C:\\Windows\\Debug\\*", |
103 | 103 | "C:\\HP\\*") and |
104 | 104 |
|
105 | | - not (process.name : "cmd.exe" and process.args : "?:\\*.bat" and process.working_directory : "?:\\Windows\\System32\\") and |
| 105 | + not (process.name : "cmd.exe" and process.args : ("*.bat", "*.cmd")) and |
106 | 106 | not (process.name : "cscript.exe" and process.args : "?:\\Windows\\system32\\calluxxprovider.vbs") and |
107 | 107 | not ( |
108 | 108 | process.name : "powershell.exe" and |
109 | 109 | process.args : ( |
110 | 110 | "-File", "-PSConsoleFile", |
111 | 111 | "C:\\ProgramData\\Microsoft\\AutopatchSetupScheduled\\SetupAutopatchClientV2Package.ps1", |
112 | | - "C:\\ProgramData\\Microsoft\\AutopatchSetupScheduled\\SetupAutopatchClientPackage.ps1" |
| 112 | + "C:\\ProgramData\\Microsoft\\AutopatchSetupScheduled\\SetupAutopatchClientPackage.ps1", |
| 113 | + "C:\\Windows\\Temp\\MSS\\MDESetup\\Invoke-MDESetup.ps1" |
113 | 114 | ) and user.id : "S-1-5-18" |
114 | 115 | ) and |
115 | | - not (process.name : "msiexec.exe" and user.id : "S-1-5-18") |
| 116 | + not (process.name : "msiexec.exe" and user.id : "S-1-5-18") and |
| 117 | + not (process.name : "powershell.exe" and |
| 118 | + process.command_line : ("C:\\ProgramData\\ElasticAgent-HealthCheck.ps1", |
| 119 | + "C:\\ProgramData\\ssh\\puttysetup.ps1")) |
116 | 120 | ''' |
117 | 121 |
|
118 | 122 |
|
|
0 commit comments