diff --git a/rules/windows/command_and_control_tunnel_vscode.toml b/rules/windows/command_and_control_tunnel_vscode.toml index 4f7b0ab35..a715e9a4f 100644 --- a/rules/windows/command_and_control_tunnel_vscode.toml +++ b/rules/windows/command_and_control_tunnel_vscode.toml @@ -4,7 +4,7 @@ integration = ["endpoint", "windows", "sentinel_one_cloud_funnel", "m365_defende maturity = "production" min_stack_comments = "Breaking change at 8.13.0 for SentinelOne Integration." min_stack_version = "8.13.0" -updated_date = "2024/09/09" +updated_date = "2024/09/25" [rule] author = ["Elastic"] @@ -41,7 +41,8 @@ type = "eql" query = ''' process where host.os.type == "windows" and event.type == "start" and - process.args : "tunnel" and (process.args : "--accept-server-license-terms" or process.name : "code*.exe") + process.args : "tunnel" and (process.args : "--accept-server-license-terms" or process.name : "code*.exe") and + not (process.name == "code-tunnel.exe" and process.args == "status" and process.parent.name == "Code.exe") '''