blob: f5c8e25c8a01e93047a08f99c4d3ebfb70e081e3 [file] [log] [blame]
<?
header("X-XSS-Protection: 1");
header("Content-Type: text/html; charset=utf-8");
?>
<!-- <?php
# Spam a bunch of As to make sure we blow past any buffers.
print str_repeat("A", 2048);
?> -->
<body>
<?php
print "<a ona";
print str_repeat("a", 2000);
flush();
usleep(200000);
print "click=alert(1) ttt>";
?>
Done.