Generated docs from job=generate-docs branch=master [ci skip]

This commit is contained in:
Atomic Red Team doc generator
2022-09-22 22:37:42 +00:00
parent 308634b0ec
commit 5ea7cb3010
2 changed files with 24 additions and 0 deletions
+11
View File
@@ -84247,6 +84247,17 @@ discovery:
description: File that houses list of commands to be executed
type: Path
default: PathToAtomicsFolder\T1016\src\qakbot.bat
dependency_executor_name: powershell
dependencies:
- description: 'File to copy must exist on disk at specified location (#{recon_commands})
'
prereq_command: 'if (Test-Path #{recon_commands}) {exit 0} else {exit 1}
'
get_prereq_command: |
New-Item -Type Directory (split-path #{recon_commands}) -ErrorAction ignore | Out-Null
Invoke-WebRequest "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1016/src/qakbot.bat" -OutFile "#{recon_commands}"
executor:
command: "#{recon_commands}\n"
name: command_prompt
+13
View File
@@ -323,6 +323,19 @@ A list of commands known to be performed by Qakbot for recon purposes
#### Dependencies: Run with `powershell`!
##### Description: File to copy must exist on disk at specified location (#{recon_commands})
##### Check Prereq Commands:
```powershell
if (Test-Path #{recon_commands}) {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powershell
New-Item -Type Directory (split-path #{recon_commands}) -ErrorAction ignore | Out-Null
Invoke-WebRequest "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1016/src/qakbot.bat" -OutFile "#{recon_commands}"
```
<br/>