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

This commit is contained in:
Atomic Red Team doc generator
2022-10-27 20:35:40 +00:00
parent 4fffd2bd92
commit c434c577af
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -41322,6 +41322,7 @@ privilege-escalation:
description: Path to DLL
type: Path
default: PathToAtomicsFolder\T1546.007\bin\NetshHelper.dll
dependency_executor_name: powershell
dependencies:
- description: 'Helper DLL must exist on disk at specified location (#{helper_file})
@@ -64425,6 +64426,7 @@ persistence:
description: Path to DLL
type: Path
default: PathToAtomicsFolder\T1546.007\bin\NetshHelper.dll
dependency_executor_name: powershell
dependencies:
- description: 'Helper DLL must exist on disk at specified location (#{helper_file})
+3 -3
View File
@@ -48,14 +48,14 @@ netsh.exe delete helper #{helper_file}
#### Dependencies: Run with `command_prompt`!
#### Dependencies: Run with `powershell`!
##### Description: Helper DLL must exist on disk at specified location (#{helper_file})
##### Check Prereq Commands:
```cmd
```powershell
if (Test-Path "#{helper_file}") { exit 0} else { exit 1}
```
##### Get Prereq Commands:
```cmd
```powershell
New-Item -Type Directory (split-path #{helper_file}) -ErrorAction ignore | Out-Null
Invoke-WebRequest "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1546.007/bin/NetshHelper.dll" -OutFile "#{helper_file}"
```