Frame Buster Buster ... buster code needed - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T00:48:59Zhttp://stackoverflow.com/feeds/question/958997http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed41Frame Buster Buster ... buster code neededJeff Atwood2009-06-06T04:29:58Z2009-11-10T20:12:25Z
<p>Let's say you don't want other sites to "frame" your site in an <code><iframe></code>:</p>
<pre><code><iframe src="http://yourwebsite.com"></iframe>
</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><script type="text/javascript">
var prevent_bust = 0
window.onbeforeunload = function() { prevent_bust++ }
setInterval(function() {
if (prevent_bust > 0) {
prevent_bust -= 2
window.top.location = 'http://server-which-responds-with-204.com'
}
}, 1)
</script>
</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-4Answer by 1800 INFORMATION for Frame Buster Buster ... buster code needed1800 INFORMATION2009-06-06T04:40:19Z2009-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#9590101Answer by OrbMan for Frame Buster Buster ... buster code neededOrbMan2009-06-06T04:40:24Z2009-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#9590204Answer by Jeff Meatball Yang for Frame Buster Buster ... buster code neededJeff Meatball Yang2009-06-06T04:48:32Z2009-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#95903613Answer by Jani Hartikainen for Frame Buster Buster ... buster code neededJani Hartikainen2009-06-06T04:55:18Z2009-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#9591840Answer by Zac for Frame Buster Buster ... buster code neededZac2009-06-06T07:31:11Z2009-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#9593490Answer by Christoph for Frame Buster Buster ... buster code neededChristoph2009-06-06T09:20:33Z2009-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#9846644Answer by Mike for Frame Buster Buster ... buster code neededMike2009-06-12T01:44:09Z2009-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#101258518Answer by HBoss for Frame Buster Buster ... buster code neededHBoss2009-06-18T13:21:16Z2009-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#10130295Answer by Josh Stodola for Frame Buster Buster ... buster code neededJosh Stodola2009-06-18T14:40:02Z2009-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#10160221Answer by Johan Stuyts for Frame Buster Buster ... buster code neededJohan Stuyts2009-06-19T01:47:38Z2009-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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title></title>
<script><!--
function replaceAttributeValuesWithActualOnes( array, attributeName, actualValueAttributeName, additionalProcessor ) {
for ( var elementIndex = 0; elementIndex < 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" );
});
}
}
// -->
</script>
</head>
<body onload="detectFraming()">
<div id="framingWarning" style="display: none; border-style: solid; border-width: 4px; border-color: #F00; padding: 6px; background-color: #FFF; color: #F00;">
<div>
<b>SECURITY WARNING</b>: Acme App is displayed inside another page.
To make sure your data is safe this page has been disabled.<br>
<a href="framing-detection.html" target="_blank" style="color: #090">Continue working safely in a new tab/window</a>
</div>
</div>
<p>
Content. <a href="#" acme:href="javascript:window.alert( 'Action performed' );">Do something</a>
</p>
<form name="acmeForm" action="#" acme:action="real-action.html">
<p>Name: <input type="text" name="name" value="" disabled="disabled" acme:disabled=""></p>
<p><input type="submit" name="save" value="Save" disabled="disabled" acme:disabled=""></p>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1016364#10163641Answer by coderrr for Frame Buster Buster ... buster code neededcoderrr2009-06-19T04:42:43Z2009-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#10185743Answer by Giorgio Maone for Frame Buster Buster ... buster code neededGiorgio Maone2009-06-19T15:23:24Z2009-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#11640600Answer by Marius for Frame Buster Buster ... buster code neededMarius2009-07-22T09:17:09Z2009-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><script type="text/javascript">
if (top != self){
top.location.replace(self.location.href);
alert("for security reasons bla bla bla");
}
</script>
</code></pre>
http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed/1710867#17108670Answer by Ivo Danihelka for Frame Buster Buster ... buster code neededIvo Danihelka2009-11-10T20:12:25Z2009-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>