From a29708a7a3c69857666de2f5ade16a0e7decff60 Mon Sep 17 00:00:00 2001 From: Michael Haag Date: Fri, 10 May 2019 13:38:02 -0600 Subject: [PATCH] install-atomicredteam Updates (#498) * Updated URL location * fixed url again * Updated InstallPath Updated install path for issue #478 --- execution-frameworks/Invoke-AtomicRedTeam/README.md | 4 ++-- .../Invoke-AtomicRedTeam/install-atomicredteam.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/execution-frameworks/Invoke-AtomicRedTeam/README.md b/execution-frameworks/Invoke-AtomicRedTeam/README.md index 937a0c42..cc6df356 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/README.md +++ b/execution-frameworks/Invoke-AtomicRedTeam/README.md @@ -8,11 +8,11 @@ Get started with our simple Install script: `powershell.exe "IEX (New-Object Net.WebClient).DownloadString('http://psInstall.AtomicRedTeam.com')"` -[Source](https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/execution-frameworks/Invoke-AtomicRedTeam/Install-AtomicRedTeam.ps1) +[Source](install-atomicredteam.ps1) By default, it will download and Install Atomic Red Team to `c:\AtomicRedTeam` -Running the [Install script](https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/execution-frameworks/Invoke-AtomicRedTeam/Install-AtomicRedTeam.ps1) locally provides three parameters: +Running the [Install script](install-atomicredteam.ps1) locally provides three parameters: InstallPath - Where ART is to be Installed diff --git a/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1 b/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1 index c1034461..d8a3dff3 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1 +++ b/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1 @@ -108,10 +108,10 @@ if(!(Test-Path -Path $InstallPath )){ Install-Module -Name powershell-yaml -Force write-verbose "Importing invoke-atomicRedTeam module" - Import-Module "$InstallPath\atomic-red-team-master\execution-frameworks\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam.psm1" + Import-Module "$InstallPath\execution-frameworks\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam.psm1" write-verbose "Changing current work directory Invoke-AtomicRedTeam" - cd "$InstallPath\atomic-red-team-master\execution-frameworks\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam\" + cd "$InstallPath\execution-frameworks\Invoke-AtomicRedTeam\Invoke-AtomicRedTeam\" write-verbose "Clearing screen" clear