Generate docs from job=validate_atomics_generate_docs branch=master

This commit is contained in:
CircleCI Atomic Red Team doc generator
2020-03-09 21:52:28 +00:00
parent bf96837707
commit 7f7fb3a9e6
2 changed files with 7 additions and 2 deletions
+2 -1
View File
@@ -102,11 +102,12 @@ Creates a new user in a command prompt
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| username | Username of the user to create | String | T1136_CMD|
| password | Password of the user to create | String | T1136_CMD!|
#### Attack Commands: Run with `command_prompt`! Elevation Required (e.g. root or admin)
```
net user /add "#{username}"
net user /add "#{username}" "#{password}"
```
#### Cleanup Commands:
+5 -1
View File
@@ -1176,10 +1176,14 @@ persistence:
description: Username of the user to create
type: String
default: T1136_CMD
password:
description: Password of the user to create
type: String
default: T1136_CMD!
executor:
name: command_prompt
elevation_required: true
command: 'net user /add "#{username}"
command: 'net user /add "#{username}" "#{password}"
'
cleanup_command: 'net user /del "#{username}"