<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Prominent Security</title>
	<atom:link href="http://prominentsecurity.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://prominentsecurity.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 29 May 2010 13:22:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on ProminentDork 1.0, automating web security auditing using Google dorks by Amanda</title>
		<link>http://prominentsecurity.com/?p=91&#038;cpage=1#comment-184</link>
		<dc:creator>Amanda</dc:creator>
		<pubDate>Sat, 29 May 2010 13:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=91#comment-184</guid>
		<description>I wish i could speak computer. FML.</description>
		<content:encoded><![CDATA[<p>I wish i could speak computer. FML.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Delete Friends CSRF Flaw by Amanda</title>
		<link>http://prominentsecurity.com/?p=119&#038;cpage=1#comment-183</link>
		<dc:creator>Amanda</dc:creator>
		<pubDate>Sat, 29 May 2010 13:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=119#comment-183</guid>
		<description>Thats my son in that video.</description>
		<content:encoded><![CDATA[<p>Thats my son in that video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Delete Friends CSRF Flaw by xdemo</title>
		<link>http://prominentsecurity.com/?p=119&#038;cpage=1#comment-173</link>
		<dc:creator>xdemo</dc:creator>
		<pubDate>Sat, 22 May 2010 18:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=119#comment-173</guid>
		<description>thanks for the interesting post.
pretty basic flaw for a site such as facebook to have... they just seem to keep coming and coming lately.

also like to say, nice blog! i&#039;ve bookmarked it and i&#039;ll come back regularly if i can remember ;p</description>
		<content:encoded><![CDATA[<p>thanks for the interesting post.<br />
pretty basic flaw for a site such as facebook to have&#8230; they just seem to keep coming and coming lately.</p>
<p>also like to say, nice blog! i&#8217;ve bookmarked it and i&#8217;ll come back regularly if i can remember ;p</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Facebook Delete Friends CSRF Flaw by t3st</title>
		<link>http://prominentsecurity.com/?p=119&#038;cpage=1#comment-166</link>
		<dc:creator>t3st</dc:creator>
		<pubDate>Sat, 22 May 2010 07:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=119#comment-166</guid>
		<description>Thank you for infomation

However, how can I know if the vulnerability has been fixed ?</description>
		<content:encoded><![CDATA[<p>Thank you for infomation</p>
<p>However, how can I know if the vulnerability has been fixed ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comcast DNS Hijacking and Web Security by Leo Charre</title>
		<link>http://prominentsecurity.com/?p=27&#038;cpage=1#comment-150</link>
		<dc:creator>Leo Charre</dc:creator>
		<pubDate>Tue, 11 May 2010 15:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=27#comment-150</guid>
		<description>This *must* be a marketing/redtape type of people major screwup- I&#039;m sure the I.T. staff realize that hijacking http is insane. I hope they get the nuts to grab management by the collar and &#039;explain&#039; to them they have to stop doing this.</description>
		<content:encoded><![CDATA[<p>This *must* be a marketing/redtape type of people major screwup- I&#8217;m sure the I.T. staff realize that hijacking http is insane. I hope they get the nuts to grab management by the collar and &#8216;explain&#8217; to them they have to stop doing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lockerz.com, and the importance of data validation. by Steve</title>
		<link>http://prominentsecurity.com/?p=45&#038;cpage=1#comment-26</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 28 Oct 2009 23:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=45#comment-26</guid>
		<description>It depends how the hashing function is implemented.  Say for example we know they are using the popular MD5 hashing algorithm, we still don&#039;t know what other data they are adding to the score value or in what way they are manipulating the pre-existing data prior to hashing it. We can try different things such as concatenating the other information passed with the hash to the end of the score value, or even appending the UNIX time-stamp of the time the request was made to the end of the score value and then comparing it to the hash generated. But in the end, the hash is generated server side and anything can be done or added to the data privately prior to it being hashed by the public hashing algorithm.  This makes it almost impossible to figure out.  This type of hash is known as a salted hash and is quite common in request validation since it is very simple to implement.  So, unless we find out what other data is being hashed along with the score, or in what way that data is being manipulated prior to being hashed, there is nothing we can do in an attempt to mimic the hashed score and send it off to the server.</description>
		<content:encoded><![CDATA[<p>It depends how the hashing function is implemented.  Say for example we know they are using the popular MD5 hashing algorithm, we still don&#8217;t know what other data they are adding to the score value or in what way they are manipulating the pre-existing data prior to hashing it. We can try different things such as concatenating the other information passed with the hash to the end of the score value, or even appending the UNIX time-stamp of the time the request was made to the end of the score value and then comparing it to the hash generated. But in the end, the hash is generated server side and anything can be done or added to the data privately prior to it being hashed by the public hashing algorithm.  This makes it almost impossible to figure out.  This type of hash is known as a salted hash and is quite common in request validation since it is very simple to implement.  So, unless we find out what other data is being hashed along with the score, or in what way that data is being manipulated prior to being hashed, there is nothing we can do in an attempt to mimic the hashed score and send it off to the server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lockerz.com, and the importance of data validation. by Anonymous</title>
		<link>http://prominentsecurity.com/?p=45&#038;cpage=1#comment-25</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 28 Oct 2009 12:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=45#comment-25</guid>
		<description>But what if the hashing function is known? Would it be possible to generate a new hash that suits us after tampering with the score in headers? Please respond.</description>
		<content:encoded><![CDATA[<p>But what if the hashing function is known? Would it be possible to generate a new hash that suits us after tampering with the score in headers? Please respond.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comcast DNS Hijacking and Web Security by Lockerz Invitation</title>
		<link>http://prominentsecurity.com/?p=27&#038;cpage=1#comment-22</link>
		<dc:creator>Lockerz Invitation</dc:creator>
		<pubDate>Mon, 12 Oct 2009 17:18:38 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=27#comment-22</guid>
		<description>cool cool :D</description>
		<content:encoded><![CDATA[<p>cool cool <img src='http://prominentsecurity.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comcast DNS Hijacking and Web Security by julieeee</title>
		<link>http://prominentsecurity.com/?p=27&#038;cpage=1#comment-21</link>
		<dc:creator>julieeee</dc:creator>
		<pubDate>Fri, 25 Sep 2009 00:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=27#comment-21</guid>
		<description>This seems rather intruiging.</description>
		<content:encoded><![CDATA[<p>This seems rather intruiging.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Comcast DNS Hijacking and Web Security by Giedrius Trumpickas</title>
		<link>http://prominentsecurity.com/?p=27&#038;cpage=1#comment-8</link>
		<dc:creator>Giedrius Trumpickas</dc:creator>
		<pubDate>Tue, 18 Aug 2009 13:05:10 +0000</pubDate>
		<guid isPermaLink="false">http://prominentsecurity.com/?p=27#comment-8</guid>
		<description>Issue https://login.comcast.net/login?pf_sp=%3E%22%3E%3Cscript%20%0A%0D%3Ealert%28%22XSSed%22%29%3B%3C/script%3E was fixed</description>
		<content:encoded><![CDATA[<p>Issue <a href="https://login.comcast.net/login?pf_sp=%3E%22%3E%3Cscript%20%3Ealert%28%22XSSed%22%29%3B%3C/script%3E" rel="nofollow">https://login.comcast.net/login?pf_sp=%3E%22%3E%3Cscript%20%3Ealert%28%22XSSed%22%29%3B%3C/script%3E</a> was fixed</p>
]]></content:encoded>
	</item>
</channel>
</rss>
