Files
atomic-red-team/atomics/T1113/T1113.yaml
T
Carrie Roberts 0859cb997a removing descriptions of xxx (left over from template) (#546)
* removing descriptions of xxx (left over from template)

* update input param descriptions

* description update

* removing descriptions of xxx (left over from template)
2019-09-03 14:11:18 -06:00

65 lines
1.5 KiB
YAML

---
attack_technique: T1113
display_name: Screen Capture
atomic_tests:
- name: Screencapture
description: |
Use screencapture command to collect a full desktop screenshot
supported_platforms:
- macos
input_arguments:
output_file:
description: Output file path
type: Path
default: desktop.png
executor:
name: bash
elevation_required: false
command: screencapture #{output_file}
- name: Screencapture (silent)
description: |
Use screencapture command to collect a full desktop screenshot
supported_platforms:
- macos
input_arguments:
output_file:
description: Output file path
type: Path
default: desktop.png
executor:
name: bash
elevation_required: false
command: screencapture -x #{output_file}
- name: X Windows Capture
description: |
Use xwd command to collect a full desktop screenshot and review file with xwud
supported_platforms:
- linux
input_arguments:
output_file:
description: Output file path
type: Path
default: desktop.xwd
executor:
name: bash
command: |
xwd -root -out #{output_file}
xwud -in #{output_file}
- name: Import
description: |
Use import command to collect a full desktop screenshot
supported_platforms:
- linux
input_arguments:
output_file:
description: Output file path
type: Path
default: desktop.png
executor:
name: bash
command: import -window root #{output_file}