12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head><title>XSS HTTP Inject0r!</title>
- <meta http-equiv="content-type" content="text/html;charset=utf-8">
- <link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon">
- <style type="text/css">
- <!--
- body,td,th {
- color: #FFFFFF;
- }
- body {
- background-color: #000000;
- }
- -->
- </style><title>Simple XSS HTTP GET vulnerability</title>
- <body>
- <form action="search.php" method="get">
- <p align="center"><strong>Simple HTTP GET XSS vulnerability</strong></p>
- <div align="center">
- <table width="270" border="0">
- <tr>
- <td width="106"><strong>Search:</strong></td>
- <td width="154"><input name="search_text" type="text" id="search_text" /></td>
- </tr>
- </table>
- <table width="268" border="0">
- <tr>
- <td width="262"><div align="center">
- <input name="submit" type="submit" value="Search it!" />
- </div></td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>
|