From 6ea465cf61eb992a04b9960e5c155b0ec6009d35 Mon Sep 17 00:00:00 2001 From: Tony M Lambert Date: Sun, 10 Nov 2019 19:43:28 -0600 Subject: [PATCH] Fixed URL for Install-AtomicRedTeam (#632) --- execution-frameworks/Invoke-AtomicRedTeam/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/execution-frameworks/Invoke-AtomicRedTeam/README.md b/execution-frameworks/Invoke-AtomicRedTeam/README.md index 96a7fd4d..6b08f989 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/README.md +++ b/execution-frameworks/Invoke-AtomicRedTeam/README.md @@ -14,7 +14,7 @@ We made installing Atomic Red Team extremely easy. Once the environment is ready, run PowerShell as an adminstrator and run the following PowerShell one liner: -`IEX (New-Object Net.WebClient).DownloadString('http://psInstall.AtomicRedTeam.com'); Install-AtomicRedTeam -verbose` +`IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/execution-frameworks/Invoke-AtomicRedTeam/install-atomicredteam.ps1'); Install-AtomicRedTeam -verbose` [Source](install-atomicredteam.ps1) @@ -65,7 +65,7 @@ Invoke-AtomicTest All This assumes your atomics folder is in the default location of `C:\AtomicRedTeam\atomic-red-team-master\atomics` -You can overide the default path to the atomics folder using the `$PSDefaultParameterValues` preference variable as shown below. +You can override the default path to the atomics folder using the `$PSDefaultParameterValues` preference variable as shown below. ``` $PSDefaultParameterValues = @{"Invoke-AtomicTest:PathToAtomicsFolder"="C:\Users\myuser\Documents\code\atomic-red-team\atomics"}