Skip to content

Instantly share code, notes, and snippets.

@alsmola
Last active June 28, 2016 00:00
Show Gist options
  • Save alsmola/a629dd19efb16c8a27ca397a6c2663d4 to your computer and use it in GitHub Desktop.
Save alsmola/a629dd19efb16c8a27ca397a6c2663d4 to your computer and use it in GitHub Desktop.
XSS Really?
<html>
<body>
<script>
function log(arg) {
console.log(arg)
};
</script>
<div onclick="log('test&#39;);alert(1);//')">
Click me.
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment