XSS Is Still Tricky
08 Mar 2013This works in Safari, Firefox, Chrome, and Opera.
<!DOCTYPE html>
<head>
<title>Oh no!</title>
<script type="text/javascript">
var xss = "</script><script>alert('XSS');</script>";
</script>
</head>
<body>
<p>And you thought parsers were smart.</p>
</body>
</html>