Fix htps:// typo in T1137.002 officetest_x86 download URL (#3333)

Co-authored-by: cyberbuff <27735081+cyberbuff@users.noreply.github.com>
This commit is contained in:
Pikammmmm
2026-05-07 10:49:13 +02:00
committed by GitHub
parent 113f30c97c
commit ed251a99b2
+1 -1
View File
@@ -83,6 +83,6 @@ if ((Test-Path "PathToAtomicsFolder\T1137.002\bin\officetest_x64.dll") -and (Tes
```powershell
New-Item -Type Directory "PathToAtomicsFolder\T1137.002\bin\" -Force | Out-Null
Invoke-Webrequest -Uri "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1137.002/bin/officetest_x64.dll" -UseBasicParsing -OutFile "PathToAtomicsFolder\T1137.002\bin\officetest_x64.dll"
Invoke-Webrequest -Uri "htps://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1137.002/bin/officetest_x86.dll" -UseBasicParsing -OutFile "PathToAtomicsFolder\T1137.002\bin\officetest_x86.dll"
Invoke-Webrequest -Uri "https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1137.002/bin/officetest_x86.dll" -UseBasicParsing -OutFile "PathToAtomicsFolder\T1137.002\bin\officetest_x86.dll"
```