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

55 lines
No EOL
2.1 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="Key"/>
</xsl:element>
</xsl:template>
<xsl:template match="Key">
<xsl:apply-templates select="Subkey"/>
<xsl:apply-templates select="Value"/>
</xsl:template>
<xsl:template match="Subkey">
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">subkey_parent</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="../@name"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">subkey</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="@name"/></xsl:attribute>
</xsl:element>
</xsl:template>
<xsl:template match="Value">
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">value_parent</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="../@name"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">value</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="@name"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">value_type</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="@type"/></xsl:attribute>
</xsl:element>
<xsl:element name="Storage">
<xsl:attribute name="type">string</xsl:attribute>
<xsl:attribute name="name">value_data</xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="."/></xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:transform>