<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for OAuth</title>
	<atom:link href="http://blog.oauth.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.oauth.net</link>
	<description>An open protocol to allow secure API authorization in a simple and standard method from web, desktop, and mobile applications.</description>
	<lastBuildDate>Mon, 04 Jan 2010 06:09:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by Peter Keane's Miscellanea &#183; Layers</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-173</link>
		<dc:creator>Peter Keane's Miscellanea &#183; Layers</dc:creator>
		<pubDate>Mon, 04 Jan 2010 06:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-173</guid>
		<description>[...] that allows two separate services to interoperate. Maybe not seamlessly and perhaps not without the occassionaly glitch, but ultimately it works and the results can be astonishing (cf. THE [...]</description>
		<content:encoded><![CDATA[<p>[...] that allows two separate services to interoperate. Maybe not seamlessly and perhaps not without the occassionaly glitch, but ultimately it works and the results can be astonishing (cf. THE [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by A Fire Eagle updater for Windows Mobile &#171; dale lane</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-169</link>
		<dc:creator>A Fire Eagle updater for Windows Mobile &#171; dale lane</dc:creator>
		<pubDate>Thu, 13 Aug 2009 21:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-169</guid>
		<description>[...] the security threat identified in OAuth last April, OAuth providers have got even more cautious, and the updated OAuth protocol is even more [...]</description>
		<content:encoded><![CDATA[<p>[...] the security threat identified in OAuth last April, OAuth providers have got even more cautious, and the updated OAuth protocol is even more [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by a walking city &#187; Blog Archive &#187; Java, OAuth, Signpost</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-168</link>
		<dc:creator>a walking city &#187; Blog Archive &#187; Java, OAuth, Signpost</dc:creator>
		<pubDate>Sun, 28 Jun 2009 05:48:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-168</guid>
		<description>[...] with a number of services, including Twitter and using the new OAuth 1.0a spec that addresses the vulnerability found in the OAuth spec [...]</description>
		<content:encoded><![CDATA[<p>[...] with a number of services, including Twitter and using the new OAuth 1.0a spec that addresses the vulnerability found in the OAuth spec [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by Web API a bezpečnosť</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-167</link>
		<dc:creator>Web API a bezpečnosť</dc:creator>
		<pubDate>Tue, 16 Jun 2009 16:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-167</guid>
		<description>[...] užívateľa). Dnes už Twitter podporuje aj oveľa lepší OAuth, v ktorom bolo len nedávno objavená bezpečnostná zraniteľnosť, čo viedlo k dočasnému odstaveniu protokolu. Napriek tomu je tento protokol ďaleko [...]</description>
		<content:encoded><![CDATA[<p>[...] užívateľa). Dnes už Twitter podporuje aj oveľa lepší OAuth, v ktorom bolo len nedávno objavená bezpečnostná zraniteľnosť, čo viedlo k dočasnému odstaveniu protokolu. Napriek tomu je tento protokol ďaleko [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An update on the OAuth session fixation vulnerability by letopedia</title>
		<link>http://blog.oauth.net/2009/04/25/an-update-on-the-oauth-session-fixation-vulnerability/#comment-166</link>
		<dc:creator>letopedia</dc:creator>
		<pubDate>Mon, 25 May 2009 07:53:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=69#comment-166</guid>
		<description>Good informative video guys.

However, for us, we think the advisory is probably a bit over alarming.

While a token session length is useful, a determined hacker could just generate a fresh token each time they send a user into their trap.

This problem only affects apps where the evil user has an account with the consumer, i.e., a consumer user accounts gathers additional data from a provider.

Apps where a consumer user account is created along with info provided are not affected, i.e., the app uses the token as a user ID, hence no evil user could get this without having the approved token.

I think the easiest way to implement a fix if for consumers to sign a callback url in the token request, so evil.com doesn&#039;t get the token given back to them. (This way the providers don&#039;t have to bother registering/storing/validating various callback URLs (I would want more than 1), and I don&#039;t have to think about notifying providers if I make any changes to my callback URL either).

Another option, as this problem only affects existing user accounts on good.com, is for good.com to also sign and pass over the username for the requesting account.

The provider displays &quot;Hello Bob, The user &#039;bob2009&#039; at www.good.com wants to access your address book, is this OK?&quot;

Ideally, I&#039;d have both username and callback urls signed and passed over. Though it looks like from the Wiki you have it under wraps.

The sooner you agree, the sooner Google will remove that horrendous &quot;this application is not configured securely&quot; warning when the user approves, set as per your advisory.</description>
		<content:encoded><![CDATA[<p>Good informative video guys.</p>
<p>However, for us, we think the advisory is probably a bit over alarming.</p>
<p>While a token session length is useful, a determined hacker could just generate a fresh token each time they send a user into their trap.</p>
<p>This problem only affects apps where the evil user has an account with the consumer, i.e., a consumer user accounts gathers additional data from a provider.</p>
<p>Apps where a consumer user account is created along with info provided are not affected, i.e., the app uses the token as a user ID, hence no evil user could get this without having the approved token.</p>
<p>I think the easiest way to implement a fix if for consumers to sign a callback url in the token request, so evil.com doesn&#8217;t get the token given back to them. (This way the providers don&#8217;t have to bother registering/storing/validating various callback URLs (I would want more than 1), and I don&#8217;t have to think about notifying providers if I make any changes to my callback URL either).</p>
<p>Another option, as this problem only affects existing user accounts on good.com, is for good.com to also sign and pass over the username for the requesting account.</p>
<p>The provider displays &#8220;Hello Bob, The user &#8216;bob2009&#8242; at <a href="http://www.good.com" rel="nofollow">http://www.good.com</a> wants to access your address book, is this OK?&#8221;</p>
<p>Ideally, I&#8217;d have both username and callback urls signed and passed over. Though it looks like from the Wiki you have it under wraps.</p>
<p>The sooner you agree, the sooner Google will remove that horrendous &#8220;this application is not configured securely&#8221; warning when the user approves, set as per your advisory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OAuth wins award at European Identity Conference by Heady days at EIC in Munich - Technology</title>
		<link>http://blog.oauth.net/2009/05/11/oauth-wins-award-at-european-identity-conference/#comment-164</link>
		<dc:creator>Heady days at EIC in Munich - Technology</dc:creator>
		<pubDate>Tue, 12 May 2009 17:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=77#comment-164</guid>
		<description>[...] accept/retrieve the physical artifacts associated with this honor. Chris has written up the story here. (Come on down to IIW8 to see the little statuette and certificate in the &#8220;flesh&#8221;.) [...]</description>
		<content:encoded><![CDATA[<p>[...] accept/retrieve the physical artifacts associated with this honor. Chris has written up the story here. (Come on down to IIW8 to see the little statuette and certificate in the &#8220;flesh&#8221;.) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by airkart</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-161</link>
		<dc:creator>airkart</dc:creator>
		<pubDate>Mon, 27 Apr 2009 04:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-161</guid>
		<description>Haha, that should be http://blog.ics.utsa.edu. Silly typos!</description>
		<content:encoded><![CDATA[<p>Haha, that should be <a href="http://blog.ics.utsa.edu" rel="nofollow">http://blog.ics.utsa.edu</a>. Silly typos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by An update on the OAuth session fixation vulnerability &#171; OAuth</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-157</link>
		<dc:creator>An update on the OAuth session fixation vulnerability &#171; OAuth</dc:creator>
		<pubDate>Sun, 26 Apr 2009 01:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-157</guid>
		<description>[...] OAuth An open protocol to allow secure API authentication in a simple and standard method from desktop and web applications.     &#171; Acknowledgement of the OAuth security&#160;issue [...]</description>
		<content:encoded><![CDATA[<p>[...] OAuth An open protocol to allow secure API authentication in a simple and standard method from desktop and web applications.     &laquo; Acknowledgement of the OAuth security&nbsp;issue [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by IT Blog</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-154</link>
		<dc:creator>IT Blog</dc:creator>
		<pubDate>Sat, 25 Apr 2009 20:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-154</guid>
		<description>&lt;strong&gt;OAuth Problem...&lt;/strong&gt;

We’d like to publicly show our appreciation for Twitter’s role in helping to minimize premature publicity of this threat, even at its own expense, taking the heat as if it was their own issue in order to allow other companies to address this threat. 
...</description>
		<content:encoded><![CDATA[<p><strong>OAuth Problem&#8230;</strong></p>
<p>We’d like to publicly show our appreciation for Twitter’s role in helping to minimize premature publicity of this threat, even at its own expense, taking the heat as if it was their own issue in order to allow other companies to address this threat.<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Acknowledgement of the OAuth security issue by Twitter Watch Out OAuth Has Security Problem with Exploits</title>
		<link>http://blog.oauth.net/2009/04/22/acknowledgement-of-the-oauth-security-issue/#comment-143</link>
		<dc:creator>Twitter Watch Out OAuth Has Security Problem with Exploits</dc:creator>
		<pubDate>Fri, 24 Apr 2009 21:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.oauth.net/?p=67#comment-143</guid>
		<description>[...] You can read more about this Security Advisory and Security Issue [...]</description>
		<content:encoded><![CDATA[<p>[...] You can read more about this Security Advisory and Security Issue [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
