Created
December 2, 2016 13:57
-
-
Save bobjflong/b9d5eb1f42b1098ba47364ca33b0bbe7 to your computer and use it in GitHub Desktop.
example bad svg
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
| <svg xmlns="http://www.w3.org/2000/svg"> | |
| <image onload="alert(1)"></image> | |
| <svg onload="alert(2)"></svg> | |
| <script>alert(3)</script> | |
| <defs onload="alert(4)"></defs> | |
| <g onload="alert(5)"> | |
| <circle onload="alert(6)" /> | |
| <text onload="alert(7)"></text> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment