Files

37 lines
1.3 KiB
YAML
Raw Permalink Normal View History

---
attack_technique: TODO
display_name: TODO
atomic_tests:
- name: TODO
description: |
TODO
supported_platforms:
- windows
- macos
- linux
input_arguments:
output_file:
description: TODO
2021-05-13 13:38:26 -07:00
type: TODO
default: TODO
2021-05-13 13:38:26 -07:00
dependency_executor_name: powershell # (optional) The executor for the prereq commands, defaults to the same executor used by the attack commands.
2020-01-21 12:11:45 -06:00
dependencies: # (optional)
- description: |
TODO
2021-05-13 13:38:26 -07:00
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.
2020-01-21 12:11:45 -06:00
TODO
2021-05-13 13:38:26 -07:00
get_prereq_command: | # Commands to meet this prerequisite or a message describing how to meet this prerequisite.
2020-01-21 12:11:45 -06:00
TODO
executor:
name: command_prompt
2021-05-13 13:38:26 -07:00
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