<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: The Pownce Worm (Yet Another Potential AJAX Worm)</title>
	<atom:link href="http://www.gnucitizen.org/projects/the-pownce-worm/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gnucitizen.org/projects/the-pownce-worm/</link>
	<description>Cutting-edge Think tank &#124; Ethical Hacker Outfit</description>
	<pubDate>Sun, 20 Jul 2008 22:13:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: pdp</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-121061</link>
		<dc:creator>pdp</dc:creator>
		<pubDate>Wed, 07 May 2008 14:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-121061</guid>
		<description>true, the POC was written exclusively for FF.</description>
		<content:encoded><![CDATA[<p>true, the POC was written exclusively for FF.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ynnhoj</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-121042</link>
		<dc:creator>ynnhoj</dc:creator>
		<pubDate>Wed, 07 May 2008 09:13:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-121042</guid>
		<description>This is not working with every browser. Because atob() is not standard in JavaScript. Probably it could work withe unescape().</description>
		<content:encoded><![CDATA[<p>This is not working with every browser. Because atob() is not standard in JavaScript. Probably it could work withe unescape().</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tweetycoaster</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114935</link>
		<dc:creator>tweetycoaster</dc:creator>
		<pubDate>Sat, 16 Feb 2008 18:32:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114935</guid>
		<description>I found plaxo.com also xssable and wormable when I test simple and plain xss stream as  to First Name entry field.</description>
		<content:encoded><![CDATA[<p>I found plaxo.com also xssable and wormable when I test simple and plain xss stream as  to First Name entry field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Acidus</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114809</link>
		<dc:creator>Acidus</dc:creator>
		<pubDate>Fri, 15 Feb 2008 14:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114809</guid>
		<description>got it. thanks</description>
		<content:encoded><![CDATA[<p>got it. thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pdp</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114768</link>
		<dc:creator>pdp</dc:creator>
		<pubDate>Thu, 14 Feb 2008 23:57:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114768</guid>
		<description>Acidus, your question makes perfect sense. There is a second &lt;code&gt;&#60;script&#62;&lt;/code&gt; &lt;code&gt;&#60;/script&#62;&lt;/code&gt; text entry which closes both and fixes the code so that it runs perfectly fine. However, in some cases like where the profile needs to be xssed for unauthenticated users you have to use &lt;code&gt;*/&#60;script&#62;/*&lt;/code&gt; as this strings is repeated several times across the page. And you need to do that because of a Google Analytics breaking the end of script and making the code not executing at all. But as I said this is only applicable for unauthenticated users. Does that make sense? I guess it needs more detailed explanation.</description>
		<content:encoded><![CDATA[<p>Acidus, your question makes perfect sense. There is a second <code>&lt;script&gt;</code> <code>&lt;/script&gt;</code> text entry which closes both and fixes the code so that it runs perfectly fine. However, in some cases like where the profile needs to be xssed for unauthenticated users you have to use <code>*/&lt;script&gt;/*</code> as this strings is repeated several times across the page. And you need to do that because of a Google Analytics breaking the end of script and making the code not executing at all. But as I said this is only applicable for unauthenticated users. Does that make sense? I guess it needs more detailed explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Acidus</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114761</link>
		<dc:creator>Acidus</dc:creator>
		<pubDate>Thu, 14 Feb 2008 22:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114761</guid>
		<description>Hmmm, perhaps I'm missing something. I see how you use a start SCRIPT tag and then a code comment to blank everything between the injection point and the "user supplied but sanitized" data. I also see how us end the "user supplied but sanitized" data with a code comment to blank out everything after the "user supplied but sanitized."

But where is the end script tag? You JavaScript will not run unless the SCRIPT tag is closed. And assuming there is a end SCRIPT tag on the page after your "user supplied but sanitized" data, you will get an unterminated comment syntax error for that script block. The only way this will work is if there is a script tag later in the page that has a closing code comment AND the rest of the code will not invoke a syntax error

I hope this is making sense! Take a look at the HTML on http://msblabs.org/filedump/frag.html

The injected code alert(555) can only run because later in the HTML their is a SCRIPT block that can close both the open code comment and the open SCRIPT tag. Was that the case in the site you were exploiting?</description>
		<content:encoded><![CDATA[<p>Hmmm, perhaps I&#8217;m missing something. I see how you use a start SCRIPT tag and then a code comment to blank everything between the injection point and the &#8220;user supplied but sanitized&#8221; data. I also see how us end the &#8220;user supplied but sanitized&#8221; data with a code comment to blank out everything after the &#8220;user supplied but sanitized.&#8221;</p>
<p>But where is the end script tag? You JavaScript will not run unless the SCRIPT tag is closed. And assuming there is a end SCRIPT tag on the page after your &#8220;user supplied but sanitized&#8221; data, you will get an unterminated comment syntax error for that script block. The only way this will work is if there is a script tag later in the page that has a closing code comment AND the rest of the code will not invoke a syntax error</p>
<p>I hope this is making sense! Take a look at the HTML on <a href="http://msblabs.org/filedump/frag.html" rel="nofollow">http://msblabs.org/filedump/frag.html</a></p>
<p>The injected code alert(555) can only run because later in the HTML their is a SCRIPT block that can close both the open code comment and the open SCRIPT tag. Was that the case in the site you were exploiting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian Pastor</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114704</link>
		<dc:creator>Adrian Pastor</dc:creator>
		<pubDate>Thu, 14 Feb 2008 09:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114704</guid>
		<description>This is a nice example of combining two vectors in order to accomplish fully working JS injection: an unfiltered - but limited by length - field, and a filtered but unlimited by length field.</description>
		<content:encoded><![CDATA[<p>This is a nice example of combining two vectors in order to accomplish fully working JS injection: an unfiltered - but limited by length - field, and a filtered but unlimited by length field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: InfoSecNirvana</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114698</link>
		<dc:creator>InfoSecNirvana</dc:creator>
		<pubDate>Thu, 14 Feb 2008 02:36:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114698</guid>
		<description>Nice job. I mentioned Pownce in my blog earlier this week as one of the applications that corporate information security people need to worry about. http://infosecnirvana.blogspot.com/2008/02/data-leak.html</description>
		<content:encoded><![CDATA[<p>Nice job. I mentioned Pownce in my blog earlier this week as one of the applications that corporate information security people need to worry about. <a href="http://infosecnirvana.blogspot.com/2008/02/data-leak.html" rel="nofollow">http://infosecnirvana.blogspot.....-leak.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauvis</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114558</link>
		<dc:creator>Mauvis</dc:creator>
		<pubDate>Wed, 13 Feb 2008 21:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114558</guid>
		<description>I thought this was a cool read and something we should all look out for while making Air apps. Thanks for the post!</description>
		<content:encoded><![CDATA[<p>I thought this was a cool read and something we should all look out for while making Air apps. Thanks for the post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pdp</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114439</link>
		<dc:creator>pdp</dc:creator>
		<pubDate>Wed, 13 Feb 2008 18:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114439</guid>
		<description>yes leah, the vendor (Pownce) was responsibly contacted about the issue and a patch was released to cover the whole before we've made our findings public. but just to stress out so that everybody knows.

&lt;div class="message"&gt;we've contacted the vendor about the issue and as a result a patch was released before we've made our findings public! the vendor's response was remarkably quick.&lt;/div&gt;</description>
		<content:encoded><![CDATA[<p>yes leah, the vendor (Pownce) was responsibly contacted about the issue and a patch was released to cover the whole before we&#8217;ve made our findings public. but just to stress out so that everybody knows.</p>
<div class="message">we&#8217;ve contacted the vendor about the issue and as a result a patch was released before we&#8217;ve made our findings public! the vendor&#8217;s response was remarkably quick.</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leah Culver</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114436</link>
		<dc:creator>Leah Culver</dc:creator>
		<pubDate>Wed, 13 Feb 2008 17:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114436</guid>
		<description>This has been fixed already.</description>
		<content:encoded><![CDATA[<p>This has been fixed already.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pdp</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114434</link>
		<dc:creator>pdp</dc:creator>
		<pubDate>Wed, 13 Feb 2008 17:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114434</guid>
		<description>well, credits due to &lt;a href="http://ha.ckers.org" rel="nofollow"&gt;RSnake&lt;/a&gt; for coming with this brilliant proof of concept script. 10x R... it works well.</description>
		<content:encoded><![CDATA[<p>well, credits due to <a href="http://ha.ckers.org" rel="nofollow">RSnake</a> for coming with this brilliant proof of concept script. 10x R&#8230; it works well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fodznipor</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114396</link>
		<dc:creator>fodznipor</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114396</guid>
		<description>Aaack!  If you're going to inflict us with a picture of Sylvester Stallone in a wig and an Hawaiian shirt, at LEAST give us a barf-bag first!  :-D</description>
		<content:encoded><![CDATA[<p>Aaack!  If you&#8217;re going to inflict us with a picture of Sylvester Stallone in a wig and an Hawaiian shirt, at LEAST give us a barf-bag first!  :-D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vindic</title>
		<link>http://www.gnucitizen.org/projects/the-pownce-worm/#comment-114230</link>
		<dc:creator>vindic</dc:creator>
		<pubDate>Wed, 13 Feb 2008 10:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.gnucitizen.org/projects/the-pownce-worm#comment-114230</guid>
		<description>amazing find, thnx pdp :) and /* */ it's just great way</description>
		<content:encoded><![CDATA[<p>amazing find, thnx pdp :) and /* */ it&#8217;s just great way</p>
]]></content:encoded>
	</item>
</channel>
</rss>
