diff --git a/atomic_red_team/atomic_test_template.yaml b/atomic_red_team/atomic_test_template.yaml index 0fc57104..07220c58 100644 --- a/atomic_red_team/atomic_test_template.yaml +++ b/atomic_red_team/atomic_test_template.yaml @@ -15,22 +15,22 @@ atomic_tests: input_arguments: output_file: description: TODO - type: todo + type: TODO default: TODO - dependency_executor_name: powershell # (optional) The executor for the prereq commands, defaults to the same executor used by the attack commands + dependency_executor_name: powershell # (optional) The executor for the prereq commands, defaults to the same executor used by the attack commands. dependencies: # (optional) - description: | TODO - prereq_command: | # commands to check if prerequisites for running this test are met. For the "command_prompt" executor, if any command returns a non-zero exit code, the pre-requisites are not met. For the "powershell" executor, all commands are run as a script block and the script block must return 0 for success. + prereq_command: | # Commands to check if prerequisites for running this test are met. For the "command_prompt" executor, if any command returns a non-zero exit code, the prerequisites are not met. For the "powershell" executor, all commands are run as a script block and the script block must return 0 for success. TODO - get_prereq_command: | # commands to meet this prerequisite or a message describing how to meet this prereq + get_prereq_command: | # Commands to meet this prerequisite or a message describing how to meet this prerequisite. TODO executor: name: command_prompt - elevation_required: true # indicates whether command must be run with admin privileges. If the elevation_required attribute is not defined, the value is assumed to be false - command: | # these are the actaul attack commands, at least one command must be provided + elevation_required: true # Indicates whether command must be run with admin privileges. If the elevation_required attribute is not defined, the value is assumed to be false. + command: | # These are the actaul attack commands, at least one command must be provided. + TODO + cleanup_command: | # You can remove the cleanup_command section if there are no cleanup commands. TODO - cleanup_command: | # you can remove the cleanup_command section if there are no cleanup commands - TODO \ No newline at end of file