From 40b97048889cef7e423090eccd70f89f2bda4e6f Mon Sep 17 00:00:00 2001 From: Carrie Roberts Date: Tue, 18 Jan 2022 08:13:23 -0600 Subject: [PATCH] making test manual to avoid execution errors (#1727) * making test manual to avoid execution errors * Update T1027.yaml * Update T1027.yaml --- atomics/T1027/T1027.yaml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/atomics/T1027/T1027.yaml b/atomics/T1027/T1027.yaml index b49b48d1..062c285c 100644 --- a/atomics/T1027/T1027.yaml +++ b/atomics/T1027/T1027.yaml @@ -168,16 +168,22 @@ atomic_tests: - windows input_arguments: remote_file: - description: URL of file to copy + description: URL of file to download type: Url default: https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/LICENSE.txt local_path: - description: Local path to place file + description: Local path/filename to save the dowloaded file to type: Path default: Atomic-license.txt executor: - command: | - cmd /c certutil —ૹu૰rlࢰca࣢c෯he –‮spli؅t‮‭ −"൏ᶠ൸" #{remote_file} #{local_path} - cleanup_command: | - del #{local_path} >nul 2>&1 - name: command_prompt + executor: + steps: | + 1. Copy the following command into the command prompt after replacing #{remote_file} and #{local_path} with your desired URL and filename. + + + certutil —ૹu૰rlࢰca࣢c෯he –‮spli؅t‮‭ −"൏ᶠ൸" #{remote_file} #{local_path} + + + 2. Press enter to execute the command. You will find the file or webpage you specified saved to the file you specified in the command. + + name: manual