<?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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>beer planet &#187; Security</title> <atom:link href="http://beerpla.net/category/security/feed/" rel="self" type="application/rss+xml" /><link>http://beerpla.net</link> <description>where things have nothing to do with beer - tutorials, tips, how-tos, thoughts, hacks, and other techy nonsense</description> <lastBuildDate>Fri, 06 Jan 2012 08:50:59 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel='hub' href='http://beerpla.net/?pushpress=hub'/> <item><title>How *Not* To Implement A Web Application That Handles External Authentication, Using BeTwittered.com As An Example</title><link>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/</link> <comments>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/#comments</comments> <pubDate>Thu, 04 Feb 2010 02:29:04 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Security]]></category> <category><![CDATA[auth]]></category> <category><![CDATA[authentication]]></category> <category><![CDATA[betwittered]]></category> <category><![CDATA[breach]]></category> <category><![CDATA[clear text]]></category> <category><![CDATA[cookie]]></category> <category><![CDATA[http]]></category> <category><![CDATA[https]]></category> <category><![CDATA[oauth]]></category> <category><![CDATA[password]]></category> <category><![CDATA[sniffing]]></category> <category><![CDATA[ssl]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[username]]></category> <category><![CDATA[xss]]></category> <guid
isPermaLink="false">http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/</guid> <description><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="lock" alt="lock" align="left" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image.png" width="150" height="150" /> Today I&#039;m going to look at how not to handle user authentication in a web application, taking <a
href="http://www.betwittered.com" rel="nofollow">BeTwittered.com</a> authenticating with Twitter as an example (sorry, guys).</p><p>BeTwittered is a simple and comfortable gadget that you can add to your site, such as your iGoogle homepage.</p><p>Since BeTwittered is just a bridge between you and Twitter, it has to first log you into your account. Here is where things go horribly, horribly wrong.</p><h2>1. BeTwittered does not use SSL to secure requests to its servers</h2><p>All authentication information is transmitted to BeTwittered servers in plain text and is easily sniffable by an attacker, both on your own network and outside of it. You can read more about SSL...<div
class=clear></div> <a
href="http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><img
style="margin: 0px 10px 10px 0px; display: inline" title="lock" alt="lock" align="left" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image.png" width="150" height="150" /> Today I&#039;m going to look at how not to handle user authentication in a web application, taking <a
href="http://www.betwittered.com" rel="nofollow">BeTwittered.com</a> authenticating with Twitter as an example (sorry, guys).</p><p>BeTwittered is a simple and comfortable gadget that you can add to your site, such as your iGoogle homepage.</p><p>Since BeTwittered is just a bridge between you and Twitter, it has to first log you into your account. Here is where things go horribly, horribly wrong.</p><h2>1. BeTwittered does not use SSL to secure requests to its servers</h2><p>All authentication information is transmitted to BeTwittered servers in plain text and is easily sniffable by an attacker, both on your own network and outside of it. You can read more about SSL encryption <a
href="http://en.wikipedia.org/wiki/Transport_Layer_Security" rel="nofollow">here</a>.</p><p>Since BeTwittered passes your Twitter username and password unencrypted as GET parameters, it may as well be serving them to potential attackers on a silver platter (note that passing this data in a POST request would change nothing, security-wise).</p><p>Here is an example request:</p><p><a
title="http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials&amp;username=foo&amp;password=bar" href="http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials&amp;username=foo&amp;password=bar">http://betwittered.com/api/?_=1265242511260&amp;req=verify_credentials<strong><em>&amp;username=foo&amp;password=bar</em></strong></a></p><p>Ugh…</p><h2>2. BeTwittered stores your username and password in unencrypted cookies</h2><p>Because BeTwittered tries to keep you logged into Twitter, it caches the username and password, unencrypted, inside browser cookies.</p><p>This means that an attacker needs to simply look at your cookies to steal this information. This can be done using these methods, among others:</p><ul><li>using an XSS vulnerability</li><li>sniffing the network traffic</li><li>walking up to your computer</li></ul><p><a
href="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image_3.png" class="lightview" rel="gallery['1412']" title="betwittered username and password in cookies"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="betwittered username and password in cookies" alt="betwittered username and password in cookies" src="http://beerpla.net/wp-content/uploads/HowNotToImplementAWebApplicationThatHand_F181/image_thumb.png" width="700" height="512" /></a></p><h2>3. Because BeTwittered passes your authentication information to its servers, it&#039;s already insecure</h2><p>If someone gets access to BeTwittered servers, it&#039;s safe to assume at that time that all accounts are potentially compromised.</p><p>Smaller sites generally cannot dedicate appropriate resources to securing their servers, which can make breaching them easier for hackers. Even Twitter itself was <a
href="http://www.google.com/search?hl=en&amp;q=twitter+hacked" rel="nofollow">hacked numerous times</a>.</p><p>&#160;</p><h2>The Alternative Solution</h2><h3>oAuth</h3><p>If the endpoint application supports <a
href="http://oauth.net/" rel="nofollow">oAuth</a> (Twitter has for months), do us all a favor and use it. Please.</p><p>oAuth allows delegating authentication to Twitter itself and only giving the application easily revokable limited access.</p><p>If BeTwittered were using oAuth, the user would be redirected to Twitter, where he or she would login. Then, the user would be sent back to BeTwittered, but now bearing special tokens. Any requests to Twitter would then be accompanied by these tokens, which would be validated by Twitter every time they&#039;re used &#8211; all of this without ever passing your password around.</p><p>You can find a nice overview of the oAuth architecture <a
href="http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iii-security-architecture/" rel="nofollow">here</a>.</p><h3>Otherwise</h3><p>If the endpoint application doesn&#039;t support oAuth, then</p><ul><li>use SSL encryption (https)</li><li>store the authentication information on the server side instead of the client side in a cookie. Instead, use the cookie to store some sort of an internal ID pointing to this server-side data. Alternatively, encrypt the username and password via a secure salted two-way hash and only then store the encrypted version in a cookie</li><li>make sure to stay on top of securing your servers (and give your sysadmin a raise). It&#039;s a time-consuming commitment, please take it seriously</li></ul><h2>Conclusion</h2><p>What other secure authentication technique or tips do you know about? Feel free to share in the comments.</p><p>Oh, and this goes without saying &#8211; stop using BeTwittered, at least until they implement a more secure login option. I&#039;ve alerted the creators about the issue and also started these threads on <a
href="http://news.ycombinator.com/item?id=1099356" rel="nofollow">HN</a> and <a
href="http://www.reddit.com/r/reddit.com/comments/axs81/using_betwittered_did_you_know_it_sends_your/" rel="nofollow">Reddit</a>.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=How+%2ANot%2A+To+Implement+A+Web+Application+That+Handles+External+Authentication%2C+Using+BeTwittered.com+As+An+Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=How%20%2ANot%2A%20To%20Implement%20A%20Web%20Application%20That%20Handles%20External%20Authentication%2C%20Using%20BeTwittered.com%20As%20An%20Example&amp;link=http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/&amp;notes=%20Today%20I%27m%20going%20to%20look%20at%20how%20not%20to%20handle%20user%20authentication%20in%20a%20web%20application%2C%20taking%20BeTwittered.com%20authenticating%20with%20Twitter%20as%20an%20example%20%28sorry%2C%20guys%29.%20%20BeTwittered%20is%20a%20simple%20and%20comfortable%20gadget%20that%20you%20can%20add%20to%20your%20site%2C%20such%20as%20your%20iGoogle%20homepage.%20%20Since%20BeTwittered%20is%20&amp;short_link=http://bit.ly/9xFmlK&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2007/10/12/sysbench-linux-test-bench/" rel="bookmark" title="October 12, 2007">sysbench &#8211; Linux Test Bench</a></li><li><a
href="http://beerpla.net/2008/04/22/do-not-use-this-perl-module-passwdunix/" rel="bookmark" title="April 22, 2008">Do NOT Use This Perl Module: Passwd::Unix</a></li><li><a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" rel="bookmark" title="February 12, 2009">How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</a></li><li><a
href="http://beerpla.net/2008/08/15/debugging-weird-sshd-connection-problems-what-happens-when-you-stop-sshd/" rel="bookmark" title="August 15, 2008">Debugging Weird sshd Connection Problems + What Happens When You Stop sshd</a></li><li><a
href="http://beerpla.net/2009/07/14/how-to-fix-palm-pres-error-sending-mail-problem-7/" rel="bookmark" title="July 14, 2009">How To Fix Palm Pre&#039;s &quot;Error Sending Mail&quot; Problem</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2010%2F02%2F03%2Fhow-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example%2F&amp;title=How%20%2ANot%2A%20To%20Implement%20A%20Web%20Application%20That%20Handles%20External%20Authentication%2C%20Using%20BeTwittered.com%20As%20An%20Example" id="wpa2a_2"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>Modern-Day Frame Busting With X-FRAME-OPTIONS And &quot;This content cannot be displayed in a frame&quot; Warnings</title><link>http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/</link> <comments>http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/#comments</comments> <pubDate>Fri, 30 Oct 2009 01:10:32 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[CSS]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Tips]]></category> <category><![CDATA[click jacking]]></category> <category><![CDATA[clickjacking]]></category> <category><![CDATA[deny]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[frame busting]]></category> <category><![CDATA[framebusting]]></category> <category><![CDATA[framekiller]]></category> <category><![CDATA[internet explorer]]></category> <category><![CDATA[same-origin]]></category> <category><![CDATA[sameorigin]]></category> <category><![CDATA[x-frame-options]]></category> <category><![CDATA[xss]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/</guid> <description><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image.png" class="lightview" rel="gallery['1194']" title="image"><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_thumb.png" width="150" height="150" /></a> Today I found out something entirely new about <a
href="http://en.wikipedia.org/wiki/Framekiller" rel="nofollow">framebusting</a> and specifically <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/">clickjacking</a> protection techniques.</p><p>I was working with a site that was using frames. Suddenly, one of the frames (which was hosted on a domain that differed from the one it was embedded in) displayed the following message (in Firefox 3.5.4):</p><div
class="wp_syntax"><div
class="code"><pre>This content cannot be displayed in a frame
&#160;
To protect your security, the publisher of this content does
not allow it to be displayed in a frame.
&#160;
Click here to open this content in a new window</pre></div></div><p><a
href="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_3.png" class="lightview" rel="gallery['1194']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_thumb_3.png" width="677" height="221" /></a></p><p>Notice how this is a native Firefox window and not a web page rendering. Quite stumped, I started looking at the frame response and...<div
class=clear></div> <a
href="http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image.png" class="lightview" rel="gallery['1194']" title="image"><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_thumb.png" width="150" height="150" /></a> Today I found out something entirely new about <a
href="http://en.wikipedia.org/wiki/Framekiller" rel="nofollow">framebusting</a> and specifically <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/">clickjacking</a> protection techniques.</p><p>I was working with a site that was using frames. Suddenly, one of the frames (which was hosted on a domain that differed from the one it was embedded in) displayed the following message (in Firefox 3.5.4):</p><div
class="wp_syntax"><div
class="code"><pre>This content cannot be displayed in a frame
&nbsp;
To protect your security, the publisher of this content does
not allow it to be displayed in a frame.
&nbsp;
Click here to open this content in a new window</pre></div></div><p><a
href="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_3.png" class="lightview" rel="gallery['1194']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/ModernDayFrameBustingWithXFRAMEOPTIONSAn_F770/image_thumb_3.png" width="677" height="221" /></a></p><p>Notice how this is a native Firefox window and not a web page rendering. Quite stumped, I started looking at the frame response and finally found that it included this little header:</p><div
class="wp_syntax"><div
class="code"><pre>X-FRAME-OPTIONS: DENY</pre></div></div><p>Turns out that modern browsers like <strike>Firefox 3.5</strike> (turns out it&#039;s the <a
href="https://addons.mozilla.org/en-US/firefox/addon/722" rel="nofollow">NoScript addon</a> that does this and not Firefox itself) and IE8 treat this header as a precautionary measure and display a generic &quot;warning&quot; to the user instead of the page content in certain conditions described below. This effort, <a
href="http://blogs.msdn.com/ie/archive/2009/01/27/ie8-security-part-vii-clickjacking-defenses.aspx" rel="nofollow">led, surprisingly, by Microsoft</a>, was really to protect users from clickjacking (I wrote about clickjacking <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/">here</a> earlier) but can be viewed as an alternative to framebusting.</p><p>Microsoft introduced the new X-FRAME-OPTIONS header with the following possible values:</p><ul><li>DENY &#8211; prevents the page from being rendered if it is contained in a frame</li><li>SAMEORIGIN &#8211; same as above, unless the page belongs to the same domain as the top-level frameset holder.</li></ul><p><strike>Firefox adopted this technique a few months later</strike> (again, I was wrong here &#8211; it was NoScript that did it), and I expect other browsers to follow.</p><p>So what does it mean to you, the developer?</p><ul><li>setting such a header will essentially render frame busting code unnecessary in modern browsers</li><li>but it has a downside of displaying a relatively ugly warning to the user</li><li>no automatic redirect is done as your page (including any framebusting code) is not loaded</li><li>thus requiring an extra click</li><li>and popping up a new tab or window</li><li>it will work even if the user has Javascript disabled, which is more secure</li></ul><p>Some useful discussion on the issue can also be found in <a
href="http://hackademix.net/2009/01/29/x-frame-options-in-firefox/" rel="nofollow">this post</a> on Hackademix.net.</p><p>So is it good practice to use this new X-FRAME-OPTIONS header instead of the traditional framebusting code? I definitely think so, especially if Firefox and other browsers start supporting it. What do you say?</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day+Frame+Busting+With+X-FRAME-OPTIONS+And+%26quot%3BThis+content+cannot+be+displayed+in+a+frame%26quot%3B+Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Modern-Day%20Frame%20Busting%20With%20X-FRAME-OPTIONS%20And%20%26quot%3BThis%20content%20cannot%20be%20displayed%20in%20a%20frame%26quot%3B%20Warnings&amp;link=http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/&amp;notes=%20Today%20I%20found%20out%20something%20entirely%20new%20about%20framebusting%20and%20specifically%20clickjacking%20protection%20techniques.%0D%0AI%20was%20working%20with%20a%20site%20that%20was%20using%20frames.%20Suddenly%2C%20one%20of%20the%20frames%20%28which%20was%20hosted%20on%20a%20domain%20that%20differed%20from%20the%20one%20it%20was%20embedded%20in%29%20displayed%20the%20following%20message&amp;short_link=http://bit.ly/chOjyg&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" rel="bookmark" title="February 12, 2009">How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</a></li><li><a
href="http://beerpla.net/2009/11/21/meet-firefox-for-mobile-video-feature-highlights-more-info/" rel="bookmark" title="November 21, 2009">Meet Firefox For Mobile [Video + Feature Highlights + More Info]</a></li><li><a
href="http://beerpla.net/2007/08/04/watch-a-useful-linux-command-you-may-have-never-heard-of/" rel="bookmark" title="August 4, 2007">Watch &#8211; A Useful Linux Command You May Have Never Heard Of</a></li><li><a
href="http://beerpla.net/2009/06/09/how-to-make-your-site-lightning-fast-by-compressing-deflategzip-your-html-javascript-css-xml-etc-in-apache/" rel="bookmark" title="June 9, 2009">How To Make Your Site Lightning Fast* By Compressing (deflate/gzip) Your HTML, Javascript, CSS, XML, etc In Apache</a></li><li><a
href="http://beerpla.net/2006/06/12/rendr-a-live-awesome-csshtml-rendering-tool/" rel="bookmark" title="June 12, 2006">Rendr &#8211; a Live Awesome CSS/HTML Rendering Tool</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F10%2F29%2Fmodern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings%2F&amp;title=Modern-Day%20Frame%20Busting%20With%20X-FRAME-OPTIONS%20And%20%26quot%3BThis%20content%20cannot%20be%20displayed%20in%20a%20frame%26quot%3B%20Warnings" id="wpa2a_4"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Random Questions and Thoughts. Password Protected Garage Door Remotes, Twitter Security, MUNI Drivers, Burgers, etc</title><link>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/</link> <comments>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/#comments</comments> <pubDate>Wed, 04 Mar 2009 13:00:00 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Beer Planet]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Stuff]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[WTF?]]></category> <category><![CDATA[answer]]></category> <category><![CDATA[burger]]></category> <category><![CDATA[buses]]></category> <category><![CDATA[dilbert]]></category> <category><![CDATA[door]]></category> <category><![CDATA[garage]]></category> <category><![CDATA[muni]]></category> <category><![CDATA[musing]]></category> <category><![CDATA[password]]></category> <category><![CDATA[question]]></category> <category><![CDATA[random]]></category> <category><![CDATA[thought]]></category> <category><![CDATA[train]]></category> <category><![CDATA[twitter]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/</guid> <description><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image.png" class="lightview" rel="gallery['826']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="159" alt="image" src="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image_thumb.png" width="240" align="left" /></a> From time to time my, still curious, mind accumulates a variety of questions and concerns which it has to spill onto the pages of this blog. How random are these? Pretty damn random, and I need to see some answers, quick. Oh, and I’m deliberately not searching Google, as I want to facilitate discussion. What fun would it be if I just looked up all these?</p><h2><strong>Password Protected Garage Door Remotes</strong></h2><p>As a paranoid person and a recent homeowner, I started to wonder how safe I actually am in my house. Consider this likely scenario that nobody seems to be concerned with:</p><blockquote><p>I park my car outside for one night and don’t take out my portable garage door remote,</p></blockquote><p>...<div
class=clear></div> <a
href="http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><a
href="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image.png" class="lightview" rel="gallery['826']" title="image"><img
title="image" style="display: inline; margin: 0px 10px 10px 0px" height="159" alt="image" src="http://beerpla.net/wp-content/uploads/Ran.PasswordProtectedGarageDoorOpenersTw_1079F/image_thumb.png" width="240" align="left" /></a> From time to time my, still curious, mind accumulates a variety of questions and concerns which it has to spill onto the pages of this blog. How random are these? Pretty damn random, and I need to see some answers, quick. Oh, and I’m deliberately not searching Google, as I want to facilitate discussion. What fun would it be if I just looked up all these?</p><h2><strong>Password Protected Garage Door Remotes</strong></h2><p>As a paranoid person and a recent homeowner, I started to wonder how safe I actually am in my house. Consider this likely scenario that nobody seems to be concerned with:</p><blockquote><p>I park my car outside for one night and don’t take out my portable garage door remote, the one with a single open/close button. Or, even worse, the remote code is programmed into one of those garage opener buttons built into the car. A car burglar comes along, breaks the window, and trashes my car. Wow, an added bonus – a free entrance into the house!</p></blockquote><p>Needless to say, this is bad already. How many of you lock the door between the house and the garage? What if you forget to do that as well? Is there a spare house key laying around in the garage? You may say “but I’ll hear the garage door open” but does it actually make you feel better? You will be present with an intruder in your house, which will scare the living shit out of you non-governator types.</p><p>So here’s my question to you, Internet, is there a garage door remote I can buy that has a programmable keypad, so that a password is needed for the button to work? In fact, it would be almost the same as the one that mounts next to the garage door. And can it not cost $100?</p><h2><strong>Twitter Security</strong></h2><p>This part is not about computer security, as you may have thought at first, although I did recently discuss it in the <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/">Clickjacking article</a>. I also know that I’m not the first one to bring this issue up but I think it’s worth discussing some more. Consider this scenario:</p><blockquote><p>You’re a cheerful, outgoing snowboarding enthusiast with 3000 twitter (plurk, facebook, or another social network but twitter is the most relevant example) followers. Or maybe you have 3 followers. There’s a 99.9% chance that your profile and updates are public (if you have 3000 followers with a private profile, you must be some sort of a chump. And yes, I did just make the stats up, want fight about it?).</p><p>So, on Friday night, you send the following tweet: “Gone snowboarding for the whole weekend. But not before getting piss trashed Friday night at the casino. Wooooo”.</p></blockquote><p>Since anybody can watch your tweets absolutely anonymously and it’s extremely easy to dig up an address knowing very little about a person, what you just said was “If you are a burglar looking for the next opportunity, just drop everything and come on by Friday night. I will be far-far away but my house (located at 123 Main St) will be available for your robbing pleasures. You only have 2 days before anyone is home, so feel free to crash on the couch and eat my food. Don’t forget to feed the cat. Kthx.”</p><p>Is this a likely scenario? Not really, unless twitter raises the tweet length to more than 140 characters, but otherwise you see where I’m going with this. Don’t be stupid – avoid advertising exact details of your whereabouts, vacation plans, etc. There are plenty of uses for Twitter without giving up most of your privacy. Ask yourself: would you post a note with your whereabouts on your door every time you leave the house for a while?</p><h2><strong>How Do Trains And Buses Know Where They Are?</strong></h2><p>If you live in a relatively large city, you have seen relatively accurate bus and train arrival predictions and, in some cases, almost exact locations of each vehicle. For example, here in San Francisco we have MUNI stations with live maps of trains’ whereabouts and bus stops with bus predictions on small electronic displays.</p><p>What is the technology behind it? It cannot be just GPS, because trains go underground where there is no reception. If it’s a combination of externally mounted sensors, are they also placed outside, once the train gets out into the street? Or is it some sort of a 2-way GPS (a conventional GPS device is just a receiver) underground that switches to sensors above ground? I don’t know but I want to.</p><h2><strong>Train/Bus Drivers And Bathrooms</strong></h2><p>While I’m on the public transportation subject, here’s what I want to know: if you are a train/bus/trolleybus driver, what do you do if you NEED to go somewhere when you are half way down your route? All of us had such moments at least once, and sometimes you just HAVE TO drop the bomb, sink some submarines, drop the kids off at the pool, release the chocolate hostage, plant some potatoes, give birth to a VB programmer, down the proctoscope, bake some brownies, you know what I mean (if you don’t, you’re a senile muppet, what are you doing on the Internet?).</p><p>They can’t just leave the train in the middle of the street, can they? Have you ever seen one run out in the middle of the street? I’m really curious here.</p><h2><strong>All Of Dilbert</strong></h2><p><strike>Is there a Dilbert collection somewhere that has every Dilbert comic in an easily browseable manner, ideally with ratings I can sort by? 100 Dilberts per page would be ideal.</strike> Ah, looks like the new <a
href="http://dilbert.com">Dilbert.com</a> finally made it a reality: <a
href="http://dilbert.com/strips/?F=1&amp;CharIDs=&amp;ViewType=Full&amp;After=04%2F17%2F1989&amp;Order=s.Rating+DESC&amp;PerPage=49&amp;x=15&amp;y=21&amp;CharFilter=Any">all Dilbert comics sorted by votes, 49 per page</a>.</p><h2><strong>Where Can I Buy A Circus Tent?</strong></h2><p>Who sells them? The ones where elephants and clowns could fit. It could also double as a portable office.</p><h2><strong>Who Gets To Eat The Most Delicious Burger In Burger Commercials?</strong></h2><p>And where do I sign up? I’m serious.</p><p
align="center">● ● ●</p><p>Yeah, so that’s pretty much what’s on my mind right now. What’s on yours?</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Random+Questions+and+Thoughts.+Password+Protected+Garage+Door+Remotes%2C+Twitter+Security%2C+MUNI+Drivers%2C+Burgers%2C+etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Random%20Questions%20and%20Thoughts.%20Password%20Protected%20Garage%20Door%20Remotes%2C%20Twitter%20Security%2C%20MUNI%20Drivers%2C%20Burgers%2C%20etc&amp;link=http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/&amp;notes=%20From%20time%20to%20time%20my%2C%20still%20curious%2C%20mind%20accumulates%20a%20variety%20of%20questions%20and%20concerns%20which%20it%20has%20to%20spill%20onto%20the%20pages%20of%20this%20blog.%20How%20random%20are%20these%3F%20Pretty%20damn%20random%2C%20and%20I%20need%20to%20see%20some%20answers%2C%20quick.%20Oh%2C%20and%20I%E2%80%99m%20deliberately%20not%20searching%20Google%2C%20as%20I%20want%20to%20facilitate%20disc&amp;short_link=http://bit.ly/a6m0Hn&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2009/12/02/the-most-useless-tweet-to-date-discovered/" rel="bookmark" title="December 2, 2009">[Twitter] The Most Useless Tweet To Date Discovered</a></li><li><a
href="http://beerpla.net/2009/03/17/twitter-autocomplete-auto-url-expansion-auto-url-shortener-auto-pagination-rt-button-nested-replies-inline-media-embed-search-tabs-and-more/" rel="bookmark" title="March 17, 2009">Twitter.com Autocomplete, Auto URL Expansion, Auto URL Shortener, RT Button, Nested Replies, Inline Media Embed, Search Tabs, And More</a></li><li><a
href="http://beerpla.net/2009/04/09/the-real-reasons-to-use-twitter-get-over-your-prejudice-already/" rel="bookmark" title="April 9, 2009">The Real Reasons To Use Twitter (Get Over Your Prejudice Already)</a></li><li><a
href="http://beerpla.net/2009/12/04/amazon-posts-the-deal-of-the-century-ultimate-ears-triplefi-10-10vi-earphones-99-down-from-399-amazing-value-perfect-for-mobile-phones/" rel="bookmark" title="December 4, 2009">Amazon Posts The Deal Of The Century: Ultimate Ears TripleFi 10 &amp; 10vi Earphones &#8211; $99, Down From $399 &#8211; Amazing Value, Perfect For Mobile Phones</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F03%2F04%2Frandom-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc%2F&amp;title=Random%20Questions%20and%20Thoughts.%20Password%20Protected%20Garage%20Door%20Remotes%2C%20Twitter%20Security%2C%20MUNI%20Drivers%2C%20Burgers%2C%20etc" id="wpa2a_6"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/03/04/random-questions-and-thoughts-password-protected-garage-door-remotes-twitter-security-muni-drivers-burgers-etc/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>How To Fight Clickjacking (Using The Recent Twitter Hijacking As An Example)</title><link>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/</link> <comments>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/#comments</comments> <pubDate>Thu, 12 Feb 2009 19:43:53 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Security]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[attack]]></category> <category><![CDATA[click]]></category> <category><![CDATA[clickjacking]]></category> <category><![CDATA[combat]]></category> <category><![CDATA[fight]]></category> <category><![CDATA[Firefox]]></category> <category><![CDATA[ie]]></category> <category><![CDATA[injection]]></category> <category><![CDATA[internet explorer]]></category> <category><![CDATA[jacking]]></category> <category><![CDATA[MySQL]]></category> <category><![CDATA[noscript]]></category> <category><![CDATA[protect]]></category> <category><![CDATA[twitter]]></category> <category><![CDATA[xss]]></category> <guid
isPermaLink="false">http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/</guid> <description><![CDATA[<h2><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image.png" width="150" height="138" /> Introduction</h2><p><a
href="http://en.wikipedia.org/wiki/Clickjacking">Clickjacking</a> is a malicious technique of tricking web users into revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages. A vulnerability across a variety of browsers and platforms, a clickjacking takes the form of embedded code or script that can execute without the user&#039;s knowledge, such as clicking on a button that appears to perform another function (credit: Wikipedia).</p><p>Clickjacking is hard to combat. From a technical standpoint, the attack is executed using a combination of <a
href="http://en.wikipedia.org/wiki/Css">CSS</a> and <a
href="http://en.wikipedia.org/wiki/IFrame">iFrames</a>, which are both harmless web technologies, and relies mostly on tricking users by means of social engineering. Additionally, the only server side technique against clickjacking known to me is “<a...<div
class=clear></div> <a
href="http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<h2><img
style="margin: 0px 10px 10px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image.png" width="150" height="138" /> Introduction</h2><p><a
href="http://en.wikipedia.org/wiki/Clickjacking">Clickjacking</a> is a malicious technique of tricking web users into revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages. A vulnerability across a variety of browsers and platforms, a clickjacking takes the form of embedded code or script that can execute without the user&#039;s knowledge, such as clicking on a button that appears to perform another function (credit: Wikipedia).</p><p>Clickjacking is hard to combat. From a technical standpoint, the attack is executed using a combination of <a
href="http://en.wikipedia.org/wiki/Css">CSS</a> and <a
href="http://en.wikipedia.org/wiki/IFrame">iFrames</a>, which are both harmless web technologies, and relies mostly on tricking users by means of social engineering. Additionally, the only server side technique against clickjacking known to me is “<a
href="http://en.wikipedia.org/wiki/Framekiller">frame breaking</a>”, which would cause a legitemate site to break out of any iFrames it may be embedded in. This is not always the desired behavior and is generally frowned upon.</p><p><div
class="note"><div
class="noteclassic"><a
href="http://en.wikipedia.org/wiki/Cross-site_scripting">XSS</a> and <a
href="http://www.codinghorror.com/blog/archives/001171.html">CSRF</a> are examples of similar malicious web attacks.</div></div></p><h2>Generic Example</h2><p>In laymen’s terms, clickjacking means that it is quite possible for websites to trick you into, for example, clicking a button to show a cute kitty while in reality prompting a deletion of all your hotmail email. A malicious site uses an iFrame (which essentially allows embedding sites within other sites) with hotmail loaded inside and hidden using CSS (which is a web language for styling HTML elements). A button named “Show Me The Next Awwww Kitty” is then placed by the malicious site and positioned below the iFrame layer (manipulated by CSS, yet again). However, because the iFrame is hidden, it looks like the “Aww” button is all you’re clicking. Wrong!</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_3.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb.png" width="351" height="92" /></a>&#160;</p><h2>Latest Example: Twitter</h2><p>This morning a new, though harmless, epidemic hit twitter. Hundreds and thousands of messages saying “Don’t Click: <a
href="http://tinyurl.com/amgzs6" rel="nofollow">http://tinyurl.com/amgzs6</a>” started showing up. Clicking the link shows a simple page with 1 button:</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_4.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_3.png" width="183" height="129" /></a> Clicking (which I of course did) uses clickjacking to repost the message to your own twitter account. Take a look yourself: <a
title="http://search.twitter.com/search?q=don%27t+click" href="http://search.twitter.com/search?q=don%27t+click" rel="nofollow">http://search.twitter.com/search?q=don%27t+click</a>.</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_5.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_4.png" width="504" height="492" /></a></p><p>All of these are a result of an experiment by <a
href="http://www.korben.info/petit-cours-de-twitt-jacking.html" rel="nofollow">some French guys</a> to mess around with twitter and show the effects of clickjacking. Thank you for that, French guys. Creating awareness via the most social platform on the web is the best thing they could do for us.</p><p><div
class="note"><div
class="notetip">Twitter rolled out a quick fix, using the very “frame breaking” technique I mentioned earlier. Now any site trying to embed twitter in an iFrame will redirect to it.</div></div></p><h2>Fight Clickjacking</h2><p><img
style="margin: 0px 10px 0px 0px; display: inline" title="image" alt="image" align="left" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_6.png" width="150" height="150" /> James Padolsey recently wrote an excellent <a
href="http://james.padolsey.com/general/clickjacking-twitter/">blog post about clickjacking</a> and mentioned Twitter specifically. Because clickjacking relies mostly on social hacking (i.e. tricking people into clicking malicious links and buttons), Twitter is nothing but a perfect platform. James gives some nice background info and code examples. He correctly highlights, as I did earlier, that clickjacking is not a software bug – it’s a malicious technique exploiting harmless technologies.</p><h4>So how does one fight clickjacking?</h4><p>At this point the most reliable way is to use Firefox and the <a
href="http://noscript.net/">NoScript extension</a>. NoScript provides a simple, yet amazingly effective feature, called <a
href="http://noscript.net/faq#qa7_4">ClearClick</a>. From their site:</p><p>“…it&#039;s enabled by default, protecting NoScript users from Clickjacking everywhere: it even remains active if you switch NoScript in the less safe <em>Allow scripts globally</em> mode. How does it work? Clickjacking hides or displaces or partially covers something you wouldn&#039;t want to click, if you could see it in its original context. ClearClick does the opposite: whenever you click a plugin object or a framed page, it takes a screenshot of it alone and opaque (i.e. an image of it with no transparencies and no overlaying objects), then compares it with a screenshot of the parent page as you can see it. If the two images differ, a clickjacking attack is probably happening and NoScript raises a &quot;ClearClick warning&quot;, showing you the contextualized and &quot;clear&quot; object you were about to click, so you can evaluate by yourself if that was really something you wanted to do.”</p><p>Did ClearClick work in the earlier twitter attack? Sure did! After I clicked the “Don’t click” button Noscript promptly popped up a warning showing the hidden iFrame (since the original malicious page has been removed, I found <a
href="http://www.korben.info/twitter/ohoh.html" rel="nofollow">another similar page</a> from the same author for screenshot purposes).</p><p><a
href="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_7.png" class="lightview" rel="gallery['774']" title="image"><img
style="display: block; float: none; margin-left: auto; margin-right: auto" title="image" alt="image" src="http://beerpla.net/wp-content/uploads/HowToFightClickjackingUsingTheRecentTwit_8F77/image_thumb_5.png" width="426" height="426" /></a>&#160;</p><p>So, even if you don’t want to enable NoScript globally, install it anyway, just for ClearClick.</p><p><div
class="note"><div
class="noteclassic">Using a browser other than Firefox? The best technique you should use is, as a general rule, don’t click on suspicious buttons and links on pages you are not familiar with. Remember: you’re on the Internet and it is full of traps.</div></div></p><p>That about covers what I had to say about clickjacking. Stay safe, folks!</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=How+To+Fight+Clickjacking+%28Using+The+Recent+Twitter+Hijacking+As+An+Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=How%20To%20Fight%20Clickjacking%20%28Using%20The%20Recent%20Twitter%20Hijacking%20As%20An%20Example%29&amp;link=http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/&amp;notes=%20Introduction%20%20Clickjacking%20is%20a%20malicious%20technique%20of%20tricking%20web%20users%20into%20revealing%20confidential%20information%20or%20taking%20control%20of%20their%20computer%20while%20clicking%20on%20seemingly%20innocuous%20web%20pages.%20A%20vulnerability%20across%20a%20variety%20of%20browsers%20and%20platforms%2C%20a%20clickjacking%20takes%20the%20form%20of%20embedde&amp;short_link=http://bit.ly/bXYPgv&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/" rel="bookmark" title="October 29, 2009">Modern-Day Frame Busting With X-FRAME-OPTIONS And &quot;This content cannot be displayed in a frame&quot; Warnings</a></li><li><a
href="http://beerpla.net/2009/12/20/enable-a-twitter-retweet-rt-button-that-lets-you-add-comments-before-retweeting/" rel="bookmark" title="December 20, 2009">Enable A Twitter Retweet (RT) Button That Lets You Add Comments Before Retweeting</a></li><li><a
href="http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/" rel="bookmark" title="February 3, 2010">How *Not* To Implement A Web Application That Handles External Authentication, Using BeTwittered.com As An Example</a></li><li><a
href="http://beerpla.net/2009/10/24/are-you-a-stackoverflow-com-superuser-com-serverfault-com-fan-heres-a-greasemonkey-script-to-keep-track-of-your-accounts-on-all-of-them/" rel="bookmark" title="October 24, 2009">StackOverflow.com, SuperUser.com, ServerFault.com Fan? Here&#039;s A Greasemonkey Script To Keep Track Of All Your Accounts</a></li><li><a
href="http://beerpla.net/2009/06/21/hidden-features-of-perl-php-javascript-c-c-c-java-ruby-python-and-others-collection-of-incredibly-useful-lists/" rel="bookmark" title="June 21, 2009">Hidden Features Of Perl, PHP, Javascript, C, C++, C#, Java, Ruby, Python, And Others [Collection Of Incredibly Useful Lists]</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2009%2F02%2F12%2Fhow-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example%2F&amp;title=How%20To%20Fight%20Clickjacking%20%28Using%20The%20Recent%20Twitter%20Hijacking%20As%20An%20Example%29" id="wpa2a_8"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2009/02/12/how-to-fight-clickjacking-using-the-recent-twitter-hijacking-as-an-example/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>The Magic HD-DVD Key 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0</title><link>http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/</link> <comments>http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/#comments</comments> <pubDate>Tue, 01 May 2007 02:17:13 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Security]]></category> <guid
isPermaLink="false">http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/</guid> <description><![CDATA[<p><strong>Edit: </strong>Ha! Google now returns 1.6mil results (when I first put the key up, it was only 800). Also, almost immediately after this post was indexed by google, the server started experiencing DoS attacks from various IPs in US and Germany. Your dirty tactics didn&#039;t work, bastards, the key is all over the place now.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p><a
href="http://www.google.com/search?sourceid=navclient-ff&#038;ie=UTF-8&#038;rls=GGGL,GGGL:2006-35,GGGL:en&#038;q=09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0">Destroy</a>...<div
class=clear></div> <a
href="http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><strong>Edit: </strong>Ha! Google now returns 1.6mil results (when I first put the key up, it was only 800). Also, almost immediately after this post was indexed by google, the server started experiencing DoS attacks from various IPs in US and Germany. Your dirty tactics didn&#039;t work, bastards, the key is all over the place now.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p>09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0.</p><p><a
href="http://www.google.com/search?sourceid=navclient-ff&#038;ie=UTF-8&#038;rls=GGGL,GGGL:2006-35,GGGL:en&#038;q=09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0">Destroy DRM.</a></p><p><center><br
/> <a
href="http://beerpla.net/wp-content/uploads/cops-hddvd.jpg" class="lightview" rel="gallery['181']"><img
src="http://beerpla.net/wp-content/uploads/cops-hddvd.jpg" border='0'></a><br
/></center></p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=The+Magic+HD-DVD+Key+09+F9+11+02+9D+74+E3+5B+D8+41+56+C5+63+56+88+C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=The%20Magic%20HD-DVD%20Key%2009%20F9%2011%2002%209D%2074%20E3%205B%20D8%2041%2056%20C5%2063%2056%2088%20C0&amp;link=http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/&amp;notes=Edit%3A%20Ha%21%20Google%20now%20returns%201.6mil%20results%20%28when%20I%20first%20put%20the%20key%20up%2C%20it%20was%20only%20800%29.%20Also%2C%20almost%20immediately%20after%20this%20post%20was%20indexed%20by%20google%2C%20the%20server%20started%20experiencing%20DoS%20attacks%20from%20various%20IPs%20in%20US%20and%20Germany.%20Your%20dirty%20tactics%20didn%27t%20work%2C%20bastards%2C%20the%20key%20is%20all%20over%20th&amp;short_link=http://bit.ly/9NtHyj&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2008/04/15/mysql-conference-liveblogging-explain-demystified-tuesday-200p/" rel="bookmark" title="April 15, 2008">MySQL Conference Liveblogging: EXPLAIN Demystified (Tuesday 2:00PM)</a></li><li><a
href="http://beerpla.net/2008/04/16/mysql-sun-flickr-fotolog-wikipedia-facebook-youtube-comparison-mysql-conference-day-2-keynote/" rel="bookmark" title="April 16, 2008">MySQL &#8211; Sun &#8211; Flickr &#8211; Fotolog &#8211; Wikipedia &#8211; Facebook &#8211; YouTube Comparison &#8211; MySQL Conference Day 2 Keynote</a></li><li><a
href="http://beerpla.net/2006/10/03/youtube-custom-rss-search-results/" rel="bookmark" title="October 3, 2006">Youtube Custom RSS Search Results</a></li><li><a
href="http://beerpla.net/2008/04/16/mysql-conference-liveblogging-mysql-performance-under-a-microscope-the-tobias-and-jay-show-wednesday-200pm/" rel="bookmark" title="April 16, 2008">MySQL Conference Liveblogging: MySQL Performance Under A Microscope: The Tobias And Jay Show (Wednesday 2:00PM)</a></li><li><a
href="http://beerpla.net/2008/03/13/central-room-of-potatoes/" rel="bookmark" title="March 13, 2008">Central Room of Potatoes</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2007%2F04%2F30%2Fthe-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0%2F&amp;title=The%20Magic%20HD-DVD%20Key%2009%20F9%2011%2002%209D%2074%20E3%205B%20D8%2041%2056%20C5%2063%2056%2088%20C0" id="wpa2a_10"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2007/04/30/the-magic-hd-dvd-key-09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Unbelievable Security Flaw in Regular Locks Makes Them Obsolete</title><link>http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/</link> <comments>http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/#comments</comments> <pubDate>Mon, 07 Aug 2006 07:51:16 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Security]]></category> <guid
isPermaLink="false">http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/</guid> <description><![CDATA[<p>Shocking&#8230;</p><p>An unbelievable security flaw in locks, this is a very good lockpicking technique, works on at least 90% of all pin locks, very interesting, the man in the video is Barry Wels, a lock and security extrodinaire.</p><p><br
/> <br
/></p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&#38;service=7&#38;tags=&#38;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=&#38;service=5&#38;tags=&#38;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=&#38;service=257&#38;tags=&#38;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=&#38;service=40&#38;tags=&#38;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=&#38;service=202&#38;tags=&#38;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&#38;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&#38;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&#38;short_link=http://bit.ly/a72dqU&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=&#38;service=2&#38;tags=&#38;ctype="</li></ul></div><p>...<div
class=clear></div> <a
href="http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p>Shocking&#8230;</p></p><p>An unbelievable security flaw in locks, this is a very good lockpicking technique, works on at least 90% of all pin locks, very interesting, the man in the video is Barry Wels, a lock and security extrodinaire.</p><p><center><br
/> <object
width="510" height="420"><param
name="movie" value="http://www.youtube.com/v/7Uv45y6vkcQ"></param><embed
src="http://www.youtube.com/v/7Uv45y6vkcQ" type="application/x-shockwave-flash" width="510" height="420"></embed></object><br
/></center></p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable+Security+Flaw+in+Regular+Locks+Makes+Them+Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%20Security%20Flaw%20in%20Regular%20Locks%20Makes%20Them%20Obsolete&amp;link=http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/&amp;notes=Shocking...%20%0AAn%20unbelievable%20security%20flaw%20in%20locks%2C%20this%20is%20a%20very%20good%20lockpicking%20technique%2C%20works%20on%20at%20least%2090%25%20of%20all%20pin%20locks%2C%20very%20interesting%2C%20the%20man%20in%20the%20video%20is%20Barry%20Wels%2C%20a%20lock%20and%20security%20extrodinaire.%20%0A%0A%0A%0A&amp;short_link=http://bit.ly/a72dqU&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2006/07/09/ali-g-interviews-posh-spice-and-david-beckham-funny-as-hell/" rel="bookmark" title="July 9, 2006">Ali-G Interviews Posh Spice and David Beckham &#8211; Funny As Hell</a></li><li><a
href="http://beerpla.net/2009/10/29/modern-day-frame-busting-with-x-frame-options-and-this-content-cannot-be-displayed-in-a-frame-warnings/" rel="bookmark" title="October 29, 2009">Modern-Day Frame Busting With X-FRAME-OPTIONS And &quot;This content cannot be displayed in a frame&quot; Warnings</a></li><li><a
href="http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/" rel="bookmark" title="June 22, 2006">Unbelievable! Working and Active Exploit on citibank.com and Many Other Sites</a></li><li><a
href="http://beerpla.net/2008/04/16/mysql-sun-flickr-fotolog-wikipedia-facebook-youtube-comparison-mysql-conference-day-2-keynote/" rel="bookmark" title="April 16, 2008">MySQL &#8211; Sun &#8211; Flickr &#8211; Fotolog &#8211; Wikipedia &#8211; Facebook &#8211; YouTube Comparison &#8211; MySQL Conference Day 2 Keynote</a></li><li><a
href="http://beerpla.net/2008/05/31/google-phone-android-demo-of-streetview-with-compass/" rel="bookmark" title="May 31, 2008">Google Phone (Android) Demo Of Streetview With Compass</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2006%2F08%2F06%2Funbelievable-security-flaw-in-regular-locks-makes-them-obsolete%2F&amp;title=Unbelievable%20Security%20Flaw%20in%20Regular%20Locks%20Makes%20Them%20Obsolete" id="wpa2a_12"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2006/08/06/unbelievable-security-flaw-in-regular-locks-makes-them-obsolete/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Unbelievable! Working and Active Exploit on citibank.com and Many Other Sites</title><link>http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/</link> <comments>http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/#comments</comments> <pubDate>Fri, 23 Jun 2006 06:03:12 +0000</pubDate> <dc:creator>Artem Russakovskii</dc:creator> <category><![CDATA[Security]]></category> <guid
isPermaLink="false">http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/</guid> <description><![CDATA[<p><strong>Edit: </strong>this has now been fixed, but I&#039;m sure many sites are still vulnerable.</p><p>Here&#039;s the link: <a
href="http://studentloan.citibank.com/slcsite/slcframeset.htm?studentloan.citibank.com/slcsite/top/top_nav.asp&#038;http://studentloan.citibank.com.citiexample.blogspot.com/">click here</a></p><p>Unbelievable! This exploit is claimed to exist on 250+ sites. Here&#039;s the quote from the guy who found it:</p><p>&#034;Look by yourself &#8211; this is how citibank.com cares about phishing and password theft. I reported it 20 hours ago. Nothing happened. Maybe it&#039;s time to make it public? It is an active link to working exploit, ready to send YOUR data from citibank.com domain to attacker&#039;s server &#8211; so dont give your real login and pass please.&#034;</p><p>Reported on <a
href="http://www.digg.com">digg.com</a>.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&#38;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&#38;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&#38;short_link=http://bit.ly/dA5iGe&#38;v=1&#38;apitype=1&#38;apikey=8afa39428933be41f8afdb8ea21a495c&#38;source=Shareaholic&#38;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&#38;service=7&#38;tags=&#38;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a</li></ul></div><p>...<div
class=clear></div> <a
href="http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/" class="read_more"><div
class=excerpt-end>Read the rest of this article &#187;</div></a></p>]]></description> <content:encoded><![CDATA[<p><strong>Edit: </strong>this has now been fixed, but I&#039;m sure many sites are still vulnerable.</p><p>Here&#039;s the link: <a
href="http://studentloan.citibank.com/slcsite/slcframeset.htm?studentloan.citibank.com/slcsite/top/top_nav.asp&#038;http://studentloan.citibank.com.citiexample.blogspot.com/">click here</a></p><p>Unbelievable! This exploit is claimed to exist on 250+ sites. Here&#039;s the quote from the guy who found it:</p><p>&#034;Look by yourself &#8211; this is how citibank.com cares about phishing and password theft. I reported it 20 hours ago. Nothing happened. Maybe it&#039;s time to make it public? It is an active link to working exploit, ready to send YOUR data from citibank.com domain to attacker&#039;s server &#8211; so dont give your real login and pass please.&#034;</p><p>Reported on <a
href="http://www.digg.com">digg.com</a>.</p><div
class="shr-bookmarks shr-bookmarks-expand"><ul
class="socials"><li
class="shr-twitter"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="shr-facebook"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a></li><li
class="shr-googlebuzz"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a></li><li
class="shr-reddit"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="shr-hackernews"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=202&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="shr-delicious"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="shr-stumbleupon"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21+Working+and+Active+Exploit+on+citibank.com+and+Many+Other+Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=38&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="shr-mail"> <a
href="http://www.shareaholic.com/api/share/?title=Unbelievable%21%20Working%20and%20Active%20Exploit%20on%20citibank.com%20and%20Many%20Other%20Sites&amp;link=http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/&amp;notes=Edit%3A%20this%20has%20now%20been%20fixed%2C%20but%20I%27m%20sure%20many%20sites%20are%20still%20vulnerable.%20%0A%0AHere%27s%20the%20link%3A%20click%20here%0A%0AUnbelievable%21%20This%20exploit%20is%20claimed%20to%20exist%20on%20250%2B%20sites.%20Here%27s%20the%20quote%20from%20the%20guy%20who%20found%20it%3A%0A%0A%22Look%20by%20yourself%20-%20this%20is%20how%20citibank.com%20cares%20about%20phishing%20and%20password%20theft.&amp;short_link=http://bit.ly/dA5iGe&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=201&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a></li></ul><div
style="clear: both;"></div></div> Similar Posts:<ul><li><a
href="http://beerpla.net/2008/12/19/monitor-all-your-domains-from-one-location/" rel="bookmark" title="December 19, 2008">Monitor All Your Domains From One Location</a></li><li><a
href="http://beerpla.net/2010/02/03/how-not-to-implement-a-web-application-that-handles-external-authentication-using-betwittered-com-as-an-example/" rel="bookmark" title="February 3, 2010">How *Not* To Implement A Web Application That Handles External Authentication, Using BeTwittered.com As An Example</a></li><li><a
href="http://beerpla.net/2008/04/22/do-not-use-this-perl-module-passwdunix/" rel="bookmark" title="April 22, 2008">Do NOT Use This Perl Module: Passwd::Unix</a></li><li><a
href="http://beerpla.net/2009/08/18/delicious-com-quietly-rolls-out-domain-and-url-searchingfiltering-finally/" rel="bookmark" title="August 18, 2009">Delicious.com [Quietly] Rolls Out Domain And Url Searching/Filtering. Finally!</a></li><li><a
href="http://beerpla.net/2007/12/10/a-happy-weatherman/" rel="bookmark" title="December 10, 2007">A Happy Weatherman?</a></li></ul><p><a
class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fbeerpla.net%2F2006%2F06%2F22%2Funbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites%2F&amp;title=Unbelievable%21%20Working%20and%20Active%20Exploit%20on%20citibank.com%20and%20Many%20Other%20Sites" id="wpa2a_14"><img
src="http://beerpla.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded> <wfw:commentRss>http://beerpla.net/2006/06/22/unbelievable-working-and-active-exploit-on-citibankcom-wellsfargocom-and-many-other-sites/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
