Generate docs from job=validate_atomics_generate_docs branch=master

This commit is contained in:
CircleCI Atomic Red Team doc generator
2020-07-14 14:36:02 +00:00
parent 1611d8fd07
commit c91c70bd67
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -27428,6 +27428,7 @@ defense-evasion:
- description: T1027.exe must exist on disk at specified location
prereq_command: 'if (Test-Path #{exe_payload}) {exit 0} else {exit 1}'
get_prereq_command: |-
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest "#{url_path}" -OutFile "$env:temp\T1027.zip"
Expand-Archive -path "$env:temp\T1027.zip" -DestinationPath "$env:temp\temp_T1027.zip\" -Force
executor:
+1
View File
@@ -167,6 +167,7 @@ if (Test-Path #{exe_payload}) {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powershell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest "#{url_path}" -OutFile "$env:temp\T1027.zip"
Expand-Archive -path "$env:temp\T1027.zip" -DestinationPath "$env:temp\temp_T1027.zip\" -Force
```