Update T1042 with cmd /c argument (#408)

The `/c` flag was missing for `cmd.exe`, causing the command to be skipped.
This commit is contained in:
Ross Wolf
2018-11-17 11:15:06 -05:00
committed by Zac Brown
parent 51180df1b1
commit ae1b07bf4d
+1 -1
View File
@@ -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}"