Skip to content

Commit 9f853a2

Browse files
committed
Update defense_evasion_process_termination_followed_by_deletion.toml
1 parent a6ed2a8 commit 9f853a2

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

rules/windows/defense_evasion_process_termination_followed_by_deletion.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2020/11/04"
33
integration = ["endpoint"]
44
maturity = "production"
5-
updated_date = "2024/10/18"
5+
updated_date = "2024/11/04"
66

77
[transform]
88
[[transform.osquery]]
@@ -112,7 +112,12 @@ sequence by host.id with maxspan=5s
112112
not process.executable like
113113
("C:\\Windows\\SoftwareDistribution\\*.exe",
114114
"C:\\Windows\\WinSxS\\*.exe",
115-
"?:\\Windows\\Postillion\\Office\\*.exe")
115+
"?:\\Windows\\Postillion\\Office\\*.exe") and
116+
not (
117+
process.name : "infinst.exe" and process.parent.name: "dxsetup.exe" and
118+
process.parent.code_signature.subject_name == "NVIDIA Corporation" and
119+
process.parent.code_signature.status == "trusted"
120+
)
116121
] by process.executable
117122
[file where host.os.type == "windows" and event.type == "deletion" and file.extension in~ ("exe", "scr", "com") and
118123
not process.executable like
@@ -130,6 +135,12 @@ sequence by host.id with maxspan=5s
130135
"?:\\Windows\\tenable_mw_scan_*.exe",
131136
"?:\\Users\\*\\AppData\\Local\\Temp\\LogiUI\\Pak\\uninstall.exe",
132137
"?:\\ProgramData\\chocolatey\\*.exe"
138+
) and
139+
not (process.name : "OktaVerifySetup-*.exe" and process.code_signature.subject_name == "Okta, Inc.") and
140+
not (
141+
process.executable : "?:\\Windows\\SysWOW64\\config\\systemprofile\\Citrix\\UpdaterBinaries\\CitrixReceiver\\*" and
142+
process.code_signature.subject_name == "Citrix Systems, Inc." and
143+
file.path : "?:\\Windows\\SysWOW64\\config\\systemprofile\\Citrix\\UpdaterBinaries\\CitrixReceiver\\*\\bootstrapperhelper.exe"
133144
)
134145
] by file.path
135146
'''

0 commit comments

Comments
 (0)