Flickr Authentication Security

Published:

Recently Flickr closed a little security hole I found in their API authentication. I was able to convince their servers to hand out a token to me based on a user's cookies and the API key and secret key of an application the user had used. Then with the JSON form of the Flickr API I had full access to the user's account.

The there two flaws in Flickr's security that exposed this problem. The first was that the security is based on the assumption that applications can keep a key secret. This is easy for web applications that make server to server API calls, but for anything that a user downloads and especially open source software it's impossible to keep the key secret. My experiment used the secret key from Flock which is open source - the secret key can be found in subversion, and the secret key from Flickr's own MacOS X uploader application which can be easilly extracted from the download from their site. Secondly the Flickr server was giving out new authentication tokens without requiring user approval.

The exploit itself is a little state-machine making a series of Flickr API calls and using one IFRAME. It goes like this:

In my case the evil consisted of posting a comment on the user's most recent photo.

The security hole is now closed, but if you're interested in seeing how to access the Flickr API entirely from JavaScript in a web page take a look at the attached exploit: sploitr.html and the md5 library: md5.js