You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.
# List of comma seperated values corrosponding to the identifiers here https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/Indexes/Indexes-Markdown/index.md
$modules_to_run = "G0102"
function Invoke-ArtTest() {
param ($id)
write-host "TEST $id - Getting Prereqs..."
invoke-atomictest $id -GetPrereqs
write-host "TEST $id - Running Test..."
invoke-atomictest $id
}
# run the tests from the modules_to_run list
ForEach($id in $modules_to_run){ invoke-arttest $id }