<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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>echolibre blog &#187; twitter</title>
	<atom:link href="http://blog.echolibre.com/category/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.echolibre.com</link>
	<description></description>
	<pubDate>Tue, 25 May 2010 13:52:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Twitter, user privacy, it&#8217;s implications</title>
		<link>http://blog.echolibre.com/2009/01/the-importance-behind-user-privacy/</link>
		<comments>http://blog.echolibre.com/2009/01/the-importance-behind-user-privacy/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 22:51:20 +0000</pubDate>
		<dc:creator>David</dc:creator>
		
		<category><![CDATA[OSS Bar Camp]]></category>

		<category><![CDATA[industry]]></category>

		<category><![CDATA[security]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[attacks]]></category>

		<category><![CDATA[schemes]]></category>

		<guid isPermaLink="false">http://blog.echolibre.com/?p=113</guid>
		<description><![CDATA[Over the past number of days a few issues have arisen around Twitter&#8217;s security platform. Most of the security &#8220;problems&#8221; discovered were either minor or required a high level of social engineering. One thing that has been realized and that is becoming common knowledge, is that once you are logged in to twitter, as soon [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past number of days a few issues have arisen around <a title="ReadWriteWeb" href="http://short.ie/rrw-twitter-security" target="_blank">Twitter&#8217;s security</a> platform. Most of the security &#8220;problems&#8221; discovered were either minor or required a high level of social engineering. One thing that has been realized and that is becoming common knowledge, is that once you are logged in to twitter, as soon as you visit another web site, that other site can make an Ajax request and retrieve your user profile.</p>
<p>Personally, I believe that this will be one of the features of web3.0*. The ability to have a single login, not having to log in anywhere and your profile will be recognized, etc. (<a title="OAuth" href="http://oauth.org" target="_blank">OAuth</a>, <a title="Open ID" href="http://openid.net" target="_blank">OpenID</a>, etc). We could almost say browser-identifiable-security where one browser window (with as many tabs as you want) could be associated with a single account and all websites you visit would know about you and your information. The idea itself is very neat, but brings with it issues around user privacy.</p>
<p><span id="more-113"></span>Whilst this is a really cool concept from a developers point of view, I can easily see why anyone would be scared of the ability to retrieve your <a title="Twitter HI demo" href="http://icant.co.uk/sandbox/twitter-hi-demo.html" target="_blank">Twitter profile from within any webpages</a>. I have found a few other services and web apps with public APIs that are also affected by that sort of bug &#8211;  if they consent to being named, I&#8217;ll do so here.</p>
<p>The type of vulnerability we&#8217;re talking about here is commonly known as a <a title="Cross Site Scripting" href="http://en.wikipedia.org/wiki/Cross-site_request_forgery" target="_blank">CSRF vulnerability</a> . Twitter has some protection against this attack on the forms that are used to write to the profile settings, direct messages, etc. It&#8217;s rather trivial to protect from CSRF &#8212; some good methods out there include adding encrypted tokens as well as verifying cookies &#8212; but the fact that <a title="Twitter status user_timeline" href="http://twitter.com/statuses/user_timeline.xml" target="_blank">http://twitter.com/statuses/user_timeline.xml</a> is accessible by anyone logged in to Twitter, it means that it will also be available to the websites they visit.</p>
<p>For instance, using <a title="JQuery Javascript Framework" href="http://jquery.com" target="_blank">jQuery</a>,  a malicious website could run something as such as:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>ready<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
$<span style="color: #339933;">.</span>getJSON<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://twitter.com/statuses/user_timeline.json, null, function(data) {
// Do something interesting with the user data you have just collected
// Maybe ajax request to your own server to insert the data?
});
});</span></pre></td></tr></table></div>

<p>Using this you could easily track anyone who comes to your website and also retrieve a list of their friends if you feel a bit more &#8230; creative.</p>
<p>Basically the process is as follows:</p>
<div id="attachment_149" class="wp-caption alignnone" style="width: 630px"> <img class="size-full wp-image-149" title="Twitter Attack Scheme Diagram " src="http://blog.echolibre.com/wp-content/uploads/2009/01/twitter_vulnerabilities.png" alt="Twitter Attack Scheme Diagram " width="620" height="300" /> <p class="wp-caption-text">Twitter Attack Scheme Diagram</p></div>
<p>1. The user logs in Twitter<br />
2. Twitter creates a cookie and logs the user in<br />
3. The user (while still logged in to Twitter) visits a malicious website<br />
4. The malicious website uses the weak-cookie and retrieves information about the user<br />
5. The malicious website outputs the data as usual and says nothing to the user.</p>
<p>One of the main implications of this openness and lack of user communication is user privacy. Many people could potentially be exposed with their names/profiles available in the wild. This will affect their privacy in a way that websites they visit could become known to everyone (And do we know how bad this could be in terms of reputation&#8230; :P)</p>
<p>I can think of two possible solutions to this problem. First, ensure a stronger authentication system for retrieving any API methods and even reading user information &#8212; not allowing the main website cookie to be used with the API would be a start. It&#8217;s a bit radical, but it may be the only option. A second option might be that the user gets choice whether to make their profile cross session available or not.</p>
<p>I&#8217;m not sure what they&#8217;ll choose but today after a few rants and playing around, I realized that this issue will probably become mainstream with other apps in the months and years to come, but only if the user is informed and their privacy respected.</p>
<p>* Some ideas from this post will be in my talk on Web 3.0 at <a title="Laura Czajkowski OSS Barcamp Dublin Event" href="http://short.ie/ossbarcamp" target="_blank">ossbarcamp</a></p>
<p>[Thanks to <a title="He likes turtles" href="http://short.ie/i-like-turtles">Turtle Kid</a> and the awesome <a href="http://short.ie/war-games-awesome">War Games</a> ]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.echolibre.com/2009/01/the-importance-behind-user-privacy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I can haz Spaz!</title>
		<link>http://blog.echolibre.com/2008/12/i-can-haz-spaz/</link>
		<comments>http://blog.echolibre.com/2008/12/i-can-haz-spaz/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:52:05 +0000</pubDate>
		<dc:creator>David</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<category><![CDATA[echolibre]]></category>

		<category><![CDATA[innovation]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[adobe air]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[spaz]]></category>

		<guid isPermaLink="false">http://blog.echolibre.com/?p=98</guid>
		<description><![CDATA[
A few days ago we were granted commit access to the kick ass,  award winning Adobe AIR Twitter client Spaz.
We are delighted to be part of another open source project, and one that takes a new and innovative approach to web and desktop development.
The Spaz client is a cross-platform (available on AIR platforms) client that [...]]]></description>
			<content:encoded><![CDATA[<p><img style="padding: 5px;" title="Spaz Twitter Client" src="http://funkatron.com/content/spaz-icon-alpha_256.png" alt="Spaz Twitter Client" width="90" height="90" align="left" /></p>
<p>A few days ago we were granted commit access to the kick ass,  <a title="Award winning spaz" href="http://short.ie/spaz-award-winning" target="_blank">award winning</a> <a title="Adobe AIR" href="http://labs.adobe.com/technologies/air/" target="_blank">Adobe AIR</a> <a title="Spaz Twitter client" href="http://short.ie/55cdqj" target="_blank">Twitter client <em>Spaz</em></a>.</p>
<p>We are delighted to be part of another open source project, and one that takes a new and <a title="Previous article on innovation in times of recession" href="http://short.ie/recession-time-for-innovation" target="_blank">innovative approach</a> to web and desktop development.</p>
<p>The Spaz client is a cross-platform (available on AIR platforms) client that allows people to interact with <a title="Twitter message platform" href="http://twitter.com" target="_blank">Twitter</a> in a whole new way. It&#8217;s great for both regular computer users in it&#8217;s ease of use, and heavy twitter users. For example you have different themes with Spaz but you can also override the CSS design to customise the app&#8217;s appearance.</p>
<p>The application supports markdown, it minimizes to system tray on windows, it has a URL shortening helper, retweet functionality, the ability to add favourites, the ability to delete messages, twitpic support, and much more.</p>
<p>You can of course go directly on <a title="Spaz Twitter client" href="http://funkatron.com/spaz" target="_blank">Spaz&#8217;s website</a> and read more about it and try it out <img src='http://blog.echolibre.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.echolibre.com/2008/12/i-can-haz-spaz/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
