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 Sep 25, 2023
1 parent 7c61ce1 commit d146373
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions atomics/Indexes/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8069,10 +8069,9 @@ defense-evasion:
{exit 0} else {exit 1}

'
get_prereq_command: 'Invoke-WebRequest -OutFile "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip"
#{url}

'
get_prereq_command: "New-Item -Type Directory \"PathToAtomicsFolder\\..\\ExternalPayloads\\\"
-ErrorAction ignore -Force | Out-Null\nInvoke-WebRequest #{url} -OutFile
\"PathToAtomicsFolder\\..\\ExternalPayloads\\T1036.zip\" \n"
executor:
command: |-
Expand-Archive -Path "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip" -DestinationPath "$env:userprofile\Downloads\T1036" -Force
Expand Down
7 changes: 3 additions & 4 deletions atomics/Indexes/windows-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6487,10 +6487,9 @@ defense-evasion:
{exit 0} else {exit 1}

'
get_prereq_command: 'Invoke-WebRequest -OutFile "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip"
#{url}

'
get_prereq_command: "New-Item -Type Directory \"PathToAtomicsFolder\\..\\ExternalPayloads\\\"
-ErrorAction ignore -Force | Out-Null\nInvoke-WebRequest #{url} -OutFile
\"PathToAtomicsFolder\\..\\ExternalPayloads\\T1036.zip\" \n"
executor:
command: |-
Expand-Archive -Path "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip" -DestinationPath "$env:userprofile\Downloads\T1036" -Force
Expand Down
3 changes: 2 additions & 1 deletion atomics/T1036/T1036.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ if (Test-Path "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip") {exit 0} else
```
##### Get Prereq Commands:
```powershell
Invoke-WebRequest -OutFile "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip" #{url}
New-Item -Type Directory "PathToAtomicsFolder\..\ExternalPayloads\" -ErrorAction ignore -Force | Out-Null
Invoke-WebRequest #{url} -OutFile "PathToAtomicsFolder\..\ExternalPayloads\T1036.zip"
```


Expand Down

0 comments on commit d146373

Please sign in to comment.