Generate docs from job=validate_atomics_generate_docs branch=master

This commit is contained in:
CircleCI Atomic Red Team doc generator
2020-08-16 02:49:11 +00:00
parent 4050f7e76c
commit af5f096360
2 changed files with 2 additions and 25 deletions
+1 -12
View File
@@ -28770,20 +28770,9 @@ defense-evasion:
type: string
default: "%temp%\\T1564.004_has_ads_cmd.txt"
ads_filename:
description: Name of ADS file.
description: Name of ADS.
type: string
default: adstest.txt
dependency_executor_name: command_prompt
dependencies:
- description: 'The file must exist on disk at specified location (#{file_name})
'
prereq_command: 'IF EXIST #{file_name} ( EXIT 0 ) ELSE ( EXIT 1 )
'
get_prereq_command: 'echo normal_text >> #{file_name} >nul 2>&1
'
executor:
command: |
echo cmd /c echo "Shell code execution."> #{file_name}:#{ads_filename}
+1 -13
View File
@@ -111,7 +111,7 @@ folder to view that the alternate data stream exists. To view the data in the al
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| file_name | File name of file to create ADS on. | string | %temp%\T1564.004_has_ads_cmd.txt|
| ads_filename | Name of ADS file. | string | adstest.txt|
| ads_filename | Name of ADS. | string | adstest.txt|
#### Attack Commands: Run with `command_prompt`!
@@ -129,18 +129,6 @@ del #{file_name} >nul 2>&1
#### Dependencies: Run with `command_prompt`!
##### Description: The file must exist on disk at specified location (#{file_name})
##### Check Prereq Commands:
```cmd
IF EXIST #{file_name} ( EXIT 0 ) ELSE ( EXIT 1 )
```
##### Get Prereq Commands:
```cmd
echo normal_text >> #{file_name} >nul 2>&1
```
<br/>