Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 9th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Is <object> vulnerable to XSS attacks?
  2. <object type="text/html" height="100%" width="100%" data="somesite.html"></object>
  3.        
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>test</title>
  8.  <script type="text/javascript">
  9.       alert('Hello World!');
  10.  </script>
  11. </head>
  12. <body>
  13. </body>
  14. </html>