From 017a9fdbb191eb6c9afd32500f19021989954c77 Mon Sep 17 00:00:00 2001 From: Paul Tavares <56442535+paul-tavares@users.noreply.github.com> Date: Mon, 12 Aug 2024 15:02:25 -0400 Subject: [PATCH] [Security Solution][Endpoint] Enable `kill-process` response action for SentinelOne hosts (#189403) ## Summary - Enables the `responseActionsSentinelOneKillProcessEnabled` feature flag, making `kill-process` available for use with SentinelOne Hosts --- .../plugins/security_solution/common/experimental_features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/common/experimental_features.ts b/x-pack/plugins/security_solution/common/experimental_features.ts index 2e8035cef2e0c..8263de8fb768b 100644 --- a/x-pack/plugins/security_solution/common/experimental_features.ts +++ b/x-pack/plugins/security_solution/common/experimental_features.ts @@ -72,7 +72,7 @@ export const allowedExperimentalValues = Object.freeze({ responseActionsSentinelOneGetFileEnabled: true, /** Enables the `kill-process` response action for SentinelOne */ - responseActionsSentinelOneKillProcessEnabled: false, + responseActionsSentinelOneKillProcessEnabled: true, /** Enable the `processes` response actions for SentinelOne */ responseActionsSentinelOneProcessesEnabled: false,