5af629b9fc
* update descriptions * add additional verification instructions * Update T1136.yaml * Update T1138.yaml * Update T1124.yaml * Update T1138.yaml Co-authored-by: Carrie Roberts <clr2of8@gmail.com>
38 lines
820 B
YAML
38 lines
820 B
YAML
---
|
|
attack_technique: T1124
|
|
display_name: System Time Discovery
|
|
|
|
atomic_tests:
|
|
- name: System Time Discovery
|
|
description: |
|
|
Identify the system time. Upon execution, the local computer system time and timezone will be displayed.
|
|
|
|
supported_platforms:
|
|
- windows
|
|
|
|
input_arguments:
|
|
computer_name:
|
|
description: computer name to query
|
|
type: string
|
|
default: localhost
|
|
|
|
executor:
|
|
name: command_prompt
|
|
elevation_required: false
|
|
command: |
|
|
net time \\#{computer_name}
|
|
w32tm /tz
|
|
|
|
- name: System Time Discovery - PowerShell
|
|
description: |
|
|
Identify the system time via PowerShell. Upon execution, the system time will be displayed.
|
|
|
|
supported_platforms:
|
|
- windows
|
|
|
|
executor:
|
|
name: powershell
|
|
elevation_required: false
|
|
command: |
|
|
Get-Date
|