Advertisement
Shad0w

Untitled

Apr 10th, 2011
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>אתגרים לאטרף - נבנה על ידי רז ובניה אבטחת מידע</title>
  4. </head>
  5. <body>
  6. <form action="" method="get">
  7. <input type="text" name="xss" value="" />
  8. <input type="submit" value="Search" />
  9. <br />
  10. </form>
  11. <?php
  12. if(isset($_GET["xss"]))
  13. {
  14. $xss = $_GET["xss"];
  15. print "Search Results For:  ";
  16. print <<<HTML
  17. <script type="text/javascript">
  18. document.write("{$xss}");
  19. </script>
  20. HTML;
  21. }
  22. ?>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement