From 66458bd33dc78cf49d1fe4bf0556519ffa280205 Mon Sep 17 00:00:00 2001 From: Samirbous <64742097+Samirbous@users.noreply.github.com> Date: Mon, 5 Feb 2024 18:36:24 +0000 Subject: [PATCH] Update lateral_movement_remote_task_creation_winlog.toml (#3419) (cherry picked from commit 6906a27c3a7db1136989b1deba37f267cf977a01) --- .../lateral_movement_remote_task_creation_winlog.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/windows/lateral_movement_remote_task_creation_winlog.toml b/rules/windows/lateral_movement_remote_task_creation_winlog.toml index b9094e0f0..a82088772 100644 --- a/rules/windows/lateral_movement_remote_task_creation_winlog.toml +++ b/rules/windows/lateral_movement_remote_task_creation_winlog.toml @@ -4,7 +4,7 @@ integration = ["system", "windows"] maturity = "production" min_stack_comments = "New fields added: required_fields, related_integrations, setup" min_stack_version = "8.3.0" -updated_date = "2023/12/14" +updated_date = "2024/02/01" [rule] author = ["Elastic"] @@ -53,7 +53,8 @@ type = "eql" timestamp_override = "event.ingested" query = ''' -iam where event.action == "scheduled-task-created" and winlog.event_data.RpcCallClientLocality : "0" +iam where event.action == "scheduled-task-created" and + winlog.event_data.RpcCallClientLocality : "0" and winlog.event_data.ClientProcessId : "0" '''