Files
atomic-red-team/execution-frameworks/deprecated/powershell-invoke-art-action/tests/WindowsExecution.tests.ps1
T
Zac Brown 27fe1066d6 Users/zacbrown/deprecate old powershell executor (#352)
* Move old PowerShell execution framework to deprecated directory.

Signed-off-by: Zac Brown <zacbrown@users.noreply.github.com>

* Generate docs from job=validate_atomics_generate_docs branch=users/zacbrown/deprecate-old-powershell-executor
2018-09-28 12:11:08 -07:00

25 lines
847 B
PowerShell

Import-Module ..\Automation\AtomicRedTeam.psd1 -Force
$sysmonAvailable = Get-WinEvent -ListLog Microsoft-Windows-Sysmon/Operational -ErrorAction Ignore
if(-not $sysmonAvailable)
{
Write-Warning "Warning: SYSMON is not installed. Many test validations will be unavailable. Please install SYSMON."
}
else {
wevtutil cl Microsoft-Windows-Sysmon/Operational
}
Describe "Tests for Windows/Execution" {
It "Validates BitsAdmin" {
$null = Invoke-ArtAction -Action Windows/Execution/BitsAdmin
Test-Path $env:TEMP\AtomicRedTeam\bitsadmin_flag.ps1 | Should be $true
}
It "Validates MSBuild Trusted Developer Utilities" {
$result = Invoke-ArtAction -Action Windows/Execution/Trusted_Developer_Utilities/MSBuild
$result -match "Hello From" | Measure-Object | Foreach-Object Count | Should be 2
}
}