From ae1b07bf4d0454680d748d97deea4aa8325e4c9c Mon Sep 17 00:00:00 2001 From: Ross Wolf <31489089+rw-access@users.noreply.github.com> Date: Sat, 17 Nov 2018 11:15:06 -0500 Subject: [PATCH] Update T1042 with cmd /c argument (#408) The `/c` flag was missing for `cmd.exe`, causing the command to be skipped. --- atomics/T1042/T1042.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atomics/T1042/T1042.yaml b/atomics/T1042/T1042.yaml index 540335f7..2330f9d9 100644 --- a/atomics/T1042/T1042.yaml +++ b/atomics/T1042/T1042.yaml @@ -21,4 +21,4 @@ atomic_tests: executor: name: command_prompt command: | - cmd.exe assoc #{extension_to_change}="#{target_exenstion_handler}" + cmd.exe /c assoc #{extension_to_change}="#{target_exenstion_handler}"