shadowbrokers-exploits/windows/Resources/Ep/Commands/Storage/RemotePlugins_Storage.xsl
2017-04-14 11:45:07 +02:00

40 lines
No EOL
1.3 KiB
XML

<?xml version='1.0' ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="StandardTransforms.xsl"/>
<xsl:output method="xml" omit-xml-declaration="no"/>
<xsl:template match="/">
<xsl:element name="StorageNodes">
<xsl:apply-templates select="Plugins"/>
</xsl:element>
</xsl:template>
<xsl:template match="Plugins">
<xsl:apply-templates select="Plugin"/>
</xsl:template>
<xsl:template match="RemotePlugins">
<xsl:apply-templates select="RemotePlugin"/>
</xsl:template>
<xsl:template match="Plugin">
<xsl:element name="Storage">
<xsl:attribute name="type">int</xsl:attribute>
<xsl:attribute name="name">id</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="number(@id)"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">int</xsl:attribute>
<xsl:attribute name="name">handle</xsl:attribute>
<xsl:attribute name="value">0x<xsl:value-of select="@handle"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">file</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="."/></xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:transform>