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

This commit is contained in:
Atomic Red Team doc generator
2022-10-17 15:11:59 +00:00
parent 8e594d58d5
commit dd2090cd6d
2 changed files with 19 additions and 0 deletions
+10
View File
@@ -92314,6 +92314,16 @@ command-and-control:
get_prereq_command: 'Invoke-WebRequest -OutFile "$env:UserProfile\Downloads\psiphon3.exe"
"https://s3.amazonaws.com/0ubz-2q11-gi9y/psiphon3.exe"
'
- description: "Batch file containing commands to run must be in src directory
\n"
prereq_command: 'if (Test-Path PathToAtomicsFolder\T1090.003\src\Psiphon.bat)
{exit 0} else {exit 1}
'
get_prereq_command: 'Invoke-WebRequest -OutFile "PathToAtomicsFolder\T1090.003\src\Psiphon.bat"
"https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1090.003/src/Psiphon.bat"
'
executor:
name: powershell
+9
View File
@@ -72,6 +72,15 @@ if (Test-Path $env:UserProfile\Downloads\psiphon3.exe) {exit 0} else {exit 1}
```powershell
Invoke-WebRequest -OutFile "$env:UserProfile\Downloads\psiphon3.exe" "https://s3.amazonaws.com/0ubz-2q11-gi9y/psiphon3.exe"
```
##### Description: Batch file containing commands to run must be in src directory
##### Check Prereq Commands:
```powershell
if (Test-Path PathToAtomicsFolder\T1090.003\src\Psiphon.bat) {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powershell
Invoke-WebRequest -OutFile "PathToAtomicsFolder\T1090.003\src\Psiphon.bat" "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1090.003/src/Psiphon.bat"
```