Frame Buster Buster ... buster code needed - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:48:59Z http://stackoverflow.com/feeds/question/958997 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed 41 Frame Buster Buster ... buster code needed Jeff Atwood 2009-06-06T04:29:58Z 2009-11-10T20:12:25Z <p>Let's say you don't want other sites to "frame" your site in an <code>&lt;iframe&gt;</code>:</p> <pre><code>&lt;iframe src="http://yourwebsite.com"&gt;&lt;/iframe&gt; </code></pre> <p>So you insert anti-framing, frame busting JavaScript into all your pages:</p> <pre><code>/* break us out of any containing iframes */ if (top != self) { top.location.replace(self.location.href); } </code></pre> <p>Excellent! Now you "bust" or break out of any containing iframe automatically. Except for one small problem.</p> <p>As it turns out, <strong>your frame-busting code can be busted</strong>, <a href="http://coderrr.wordpress.com/2009/02/13/preventing-frame-busting-and-click-jacking-ui-redressing/" rel="nofollow">as shown here</a>:</p> <pre><code>&lt;script type="text/javascript"&gt; var prevent_bust = 0 window.onbeforeunload = function() { prevent_bust++ } setInterval(function() { if (prevent_bust &gt; 0) { prevent_bust -= 2 window.top.location = 'http://server-which-responds-with-204.com' } }, 1) &lt;/script&gt; </code></pre> <p>This code does the following:</p> <ul> <li>increments a counter every time the browser attempts to navigate away from the current page, via the <code>window.onbeforeonload</code> event handler</li> <li>sets up a timer that fires every millisecond via <code>setInterval()</code>, and if it sees the counter incremented, changes the current location to a server of the attacker's control</li> <li>that server serves up a page with HTTP status code <strong>204</strong>, which does not cause the browser to nagivate anywhere</li> </ul> <p>My question is -- and this is more of a JavaScript puzzle than an actual <em>problem</em> -- how can you defeat the frame-busting buster? </p> <p>I had a few thoughts, but nothing worked in my testing:</p> <ul> <li>attempting to clear the <code>onbeforeunload</code> event via <code>onbeforeonload = null</code> had no effect</li> <li>adding an <code>alert()</code> stopped the process let the user know it was happening, but did not interfere with the code in any way; clicking OK lets the busting continue as normal</li> <li>I can't think of any way to clear the <code>setInterval()</code> timer</li> </ul> <p>I'm not much of a JavaScript programmer, so here's my challenge to you: <strong>hey buster, can you bust the frame-busting buster?</strong></p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959009#959009 -4 Answer by 1800 INFORMATION for Frame Buster Buster ... buster code needed 1800 INFORMATION 2009-06-06T04:40:19Z 2009-06-06T04:40:19Z <p>A simple, naive and probably wrong thing:</p> <pre><code>if (top != self) { // super obfuscated buster-buster-buster code window.onbeforeunload = null; top.location.replace(self.location.href); } </code></pre> <p>disclaimer:</p> <p>I know nothing about web programming or Javascript</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959010#959010 1 Answer by OrbMan for Frame Buster Buster ... buster code needed OrbMan 2009-06-06T04:40:24Z 2009-06-06T04:51:54Z <p>Well, you can modify the value of the counter, but that is obviously a brittle solution. You can load your content via AJAX after you have determined the site is not within a frame - also not a great solution, but it hopefully avoids firing the on beforeunload event (I am assuming).</p> <p>Edit: Another idea. If you detect you are in a frame, ask the user to disable javascript, before clicking on a link that takes you to the desired URL (passing a querystring that lets your page know to tell the user that they can re-enable javascript once they are there).</p> <p>Edit 2: Go nuclear - if you detect you are in a frame, just delete your document body content and print some nasty message.</p> <p>Edit 3: Can you enumerate the top document and set all functions to null (even anonymous ones)?</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959020#959020 4 Answer by Jeff Meatball Yang for Frame Buster Buster ... buster code needed Jeff Meatball Yang 2009-06-06T04:48:32Z 2009-06-06T04:56:50Z <p>I think you were almost there. Have you tried:</p> <pre><code>window.parent.onbeforeunload = null; window.parent.location.replace(self.location.href); </code></pre> <p>or, alternatively:</p> <pre><code>window.parent.prevent_bust = 0; </code></pre> <p>Note: I didn't actually test this.</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959036#959036 13 Answer by Jani Hartikainen for Frame Buster Buster ... buster code needed Jani Hartikainen 2009-06-06T04:55:18Z 2009-06-06T04:55:18Z <p>Came up with this, and it seems to work at least in Firefox.</p> <pre><code>if(top != self) { top.onbeforeunload = function() {}; top.location.replace(self.location.href); } </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959184#959184 0 Answer by Zac for Frame Buster Buster ... buster code needed Zac 2009-06-06T07:31:11Z 2009-06-06T07:31:11Z <p>In a real world scenario involving different domain names you can't touch other window contexts anyways. You don't even have read access to the location property. Am I missing something here? Or are you guys doing your tests from a single domain name?</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/959349#959349 0 Answer by Christoph for Frame Buster Buster ... buster code needed Christoph 2009-06-06T09:20:33Z 2009-06-06T09:20:33Z <p>What about calling the buster repeatedly as well? This'll create a race condition, but one may hope that the buster comes out on top:</p> <pre><code>(function() { if(top !== self) { top.location.href = self.location.href; setTimeout(arguments.callee, 0); } })(); </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/984664#984664 4 Answer by Mike for Frame Buster Buster ... buster code needed Mike 2009-06-12T01:44:09Z 2009-06-12T01:44:09Z <p>Ok, so we know that were in a frame. So we location.href to another special page with the path as a GET variable. We now explain to the user what is going on and provide a link with a target="_TOP" option. It's simple and would probably work (haven't tested it), but it requires some user interaction. Maybe you could point out the offending site to the user and make a hall of shame of click jackers to your site somewhere.. Just an idea, but it night work..</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1012585#1012585 18 Answer by HBoss for Frame Buster Buster ... buster code needed HBoss 2009-06-18T13:21:16Z 2009-06-18T13:21:16Z <p>I'm not sure if this is viable or not - but if you can't break the frame, why not just display a warning. For example, If your page isn't the "top page" create a setInterval method that tries to break the frame. If after 3 or 4 tries your page still isn't the top page - create a div element that covers the whole page (modal box) with a message and a link like...</p> <blockquote> <p>You are viewing this page in a unauthorized frame window - (Blah blah... potential security issue)</p> <p><strong>click this link to fix this problem</strong></p> </blockquote> <p>Not the best, but I don't see any way they could script their way out of that.</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1013029#1013029 5 Answer by Josh Stodola for Frame Buster Buster ... buster code needed Josh Stodola 2009-06-18T14:40:02Z 2009-07-11T03:13:55Z <p>After pondering this for a little while, I believe this will show them whose boss...</p> <pre><code>if(top != self) { window.open(location.href, '_top'); } </code></pre> <p>Using "_top" as the target parameter for window.open will launch it in the same window.</p> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1016022#1016022 1 Answer by Johan Stuyts for Frame Buster Buster ... buster code needed Johan Stuyts 2009-06-19T01:47:38Z 2009-06-19T01:47:38Z <p>All the proposed solutions directly force a change in the location of the top window. What if a user wants the frame to be there? For example the top frame in the image results of search engines.</p> <p>I wrote a prototype where by default all inputs (links, forms and input elements) are disabled and/or do nothing when activated.</p> <p>If a containing frame is detected, the inputs are left disabled and a warning message is shown at the top of the page. The warning message contains a link that will open a safe version of the page in a new window. This prevents the page from being used for clickjacking, while still allowing the user to view the contents in other situations.</p> <p>If no containing frame is detected, the inputs are enabled.</p> <p>Here is the code. You need to set the standard HTML attributes to safe values and add additonal attributes that contain the actual values. It probably is incomplete and for full safety additional attributes (I am thinking about event handlers) will probably have to be treated in the same way:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;script&gt;&lt;!-- function replaceAttributeValuesWithActualOnes( array, attributeName, actualValueAttributeName, additionalProcessor ) { for ( var elementIndex = 0; elementIndex &lt; array.length; elementIndex += 1 ) { var element = array[ elementIndex ]; var actualValue = element.getAttribute( actualValueAttributeName ); if ( actualValue != null ) { element[ attributeName ] = actualValue; } if ( additionalProcessor != null ) { additionalProcessor( element ); } } } function detectFraming() { if ( top != self ) { document.getElementById( "framingWarning" ).style.display = "block"; } else { replaceAttributeValuesWithActualOnes( document.links, "href", "acme:href" ); replaceAttributeValuesWithActualOnes( document.forms, "action", "acme:action", function ( form ) { replaceAttributeValuesWithActualOnes( form.elements, "disabled", "acme:disabled" ); }); } } // --&gt; &lt;/script&gt; &lt;/head&gt; &lt;body onload="detectFraming()"&gt; &lt;div id="framingWarning" style="display: none; border-style: solid; border-width: 4px; border-color: #F00; padding: 6px; background-color: #FFF; color: #F00;"&gt; &lt;div&gt; &lt;b&gt;SECURITY WARNING&lt;/b&gt;: Acme App is displayed inside another page. To make sure your data is safe this page has been disabled.&lt;br&gt; &lt;a href="framing-detection.html" target="_blank" style="color: #090"&gt;Continue working safely in a new tab/window&lt;/a&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt; Content. &lt;a href="#" acme:href="javascript:window.alert( 'Action performed' );"&gt;Do something&lt;/a&gt; &lt;/p&gt; &lt;form name="acmeForm" action="#" acme:action="real-action.html"&gt; &lt;p&gt;Name: &lt;input type="text" name="name" value="" disabled="disabled" acme:disabled=""&gt;&lt;/p&gt; &lt;p&gt;&lt;input type="submit" name="save" value="Save" disabled="disabled" acme:disabled=""&gt;&lt;/p&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1016364#1016364 1 Answer by coderrr for Frame Buster Buster ... buster code needed coderrr 2009-06-19T04:42:43Z 2009-06-19T04:42:43Z <p><a href="http://coderrr.wordpress.com/2009/06/18/anti-anti-frame-busting/" rel="nofollow">http://coderrr.wordpress.com/2009/06/18/anti-anti-frame-busting/</a></p> <pre><code>if (top != self) { top.location.replace(document.location) alert('busting you out, please wait...') } </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1018574#1018574 3 Answer by Giorgio Maone for Frame Buster Buster ... buster code needed Giorgio Maone 2009-06-19T15:23:24Z 2009-06-19T15:23:24Z <pre><code>if (top != self) { top.location.replace(location); location.replace("about:blank"); // want me framed? no way! } </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1164060#1164060 0 Answer by Marius for Frame Buster Buster ... buster code needed Marius 2009-07-22T09:17:09Z 2009-07-22T09:17:09Z <p>If you add an alert right after the buster code, then the alert will stall the javascript thread, and it will let the page load. This is what StackOverflow does, and it busts out of my iframes, even when I use the frame busting buster. It also worked with my simple test page. This has only been tested in Firefox 3.5 and IE7 on windows.</p> <p>Code:</p> <pre><code>&lt;script type="text/javascript"&gt; if (top != self){ top.location.replace(self.location.href); alert("for security reasons bla bla bla"); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1710867#1710867 0 Answer by Ivo Danihelka for Frame Buster Buster ... buster code needed Ivo Danihelka 2009-11-10T20:12:25Z 2009-11-10T20:12:25Z <p>If you want to test your buster buster buster, I made a <a href="http://how.appspot.com/frame" rel="nofollow">page that frames any given URL</a>.</p>