Skip to content

Commit

Permalink
Merge branch 'master' into clr2of8-patch-60
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbuff authored Nov 9, 2023
2 parents c29adab + 08a8183 commit 1c376a2
Show file tree
Hide file tree
Showing 4 changed files with 6 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
1 change: 1 addition & 0 deletions atomics/T1218/T1218.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ atomic_tests:
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

0 comments on commit 1c376a2

Please sign in to comment.