Skip to content

Instantly share code, notes, and snippets.

@xenoscr
Created April 18, 2021 00:45
Show Gist options
  • Save xenoscr/af621fac628ab5c7b2d8d61f31c415a2 to your computer and use it in GitHub Desktop.
Save xenoscr/af621fac628ab5c7b2d8d61f31c415a2 to your computer and use it in GitHub Desktop.
SquiblyTest - Test Several Dimensions of EDR -
<?XML version="1.0"?>
<scriptlet>
<registration
progid="PoC"
classid="{F0001111-0000-0000-0000-0000FEEDACDC}" >
<!-- Proof Of Concept - Casey Smith @subTee -->
<!-- License: BSD3-Clause -->
<script language="JScript">
<![CDATA[
//Child Process + Command Line
var r = new ActiveXObject("WScript.Shell").Run("cmd.exe /k title BADC0FFEE");
// Registry Add, Modify, Delete
var regtest = new ActiveXObject("WScript.Shell")
regtest.RegWrite("HKCU\\TestKey\\", "BADC0FFEE");
//regtest.RegDelete("HKCU\TestKey\");
// File Create, Modify, Delete
//Implicit with download.
]]>
</script>
</registration>
</scriptlet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment