Skip to content

Commit

Permalink
Generated docs from job=generate-docs branch=master [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomic Red Team doc generator committed Nov 8, 2023
1 parent 2b36524 commit 08a8183
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions atomics/Indexes/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9692,6 +9692,7 @@ defense-evasion:
description: Path to ie4uinit.exe
type: path
default: c:\windows\system32\ie4uinit.exe
dependency_executor_name: powershell
dependencies:
- description: 'ieuinit.inf must exist on disk at specified location (#{Path_inf})

Expand Down
1 change: 1 addition & 0 deletions atomics/Indexes/windows-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7593,6 +7593,7 @@ defense-evasion:
description: Path to ie4uinit.exe
type: path
default: c:\windows\system32\ie4uinit.exe
dependency_executor_name: powershell
dependencies:
- description: 'ieuinit.inf must exist on disk at specified location (#{Path_inf})

Expand Down
6 changes: 3 additions & 3 deletions atomics/T1218/T1218.md
Original file line number Diff line number Diff line change
Expand Up @@ -584,14 +584,14 @@ del %TEMP%\ieuinit.inf >nul 2>&1



#### Dependencies: Run with `command_prompt`!
#### Dependencies: Run with `powershell`!
##### Description: ieuinit.inf must exist on disk at specified location (#{Path_inf})
##### Check Prereq Commands:
```cmd
```powershell
if (Test-Path "#{Path_inf}") {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```cmd
```powershell
New-Item -Type Directory (split-path "#{Path_inf}") -ErrorAction ignore | Out-Null
Invoke-WebRequest "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1218/src/ieuinit.inf" -OutFile "#{Path_inf}"
```
Expand Down

0 comments on commit 08a8183

Please sign in to comment.