This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Clickjacking Defense Cheat Sheet"

From OWASP
Jump to: navigation, search
m (Clickjacking Defense Introduction)
m (Point to the official site)
 
(44 intermediate revisions by 12 users not shown)
Line 1: Line 1:
= Clickjacking Defense Introduction =
+
__NOTOC__
 +
<div style="width:100%;height:160px;border:0,margin:0;overflow: hidden;">[[File:Cheatsheets-header.jpg|link=]]</div>
  
This cheat sheet is focused on providing developer guidance on Clickjack/UI Redress attack prevention. For more information on the risk of Clickjacking, please visit [https://www.owasp.org/index.php/Clickjacking this page]. For addition references on Clickjacking, please visit [https://www.owasp.org/index.php/Clickjacking#References this page].
+
The Cheat Sheet Series project has been moved to [https://github.com/OWASP/CheatSheetSeries GitHub]!
  
The most popular way to defend against clickjacking is to include some sort of "frame-breaking" functionality which prevents other web pages from framing the site you wish to defend. This cheat sheet will discuss two methods of implementing frame-braking; via X-FRAME-OPTIONS headers (if the browser or browsers in question support it) and via javascript "frame-breaking" code.
+
Please visit [https://cheatsheetseries.owasp.org/cheatsheets/Clickjacking_Defense_Cheat_Sheet.html Clickjacking Defense Cheat Sheet] to see the latest version of the cheat sheet.
 
 
= Defending with X-FRAME-OPTIONS response headers =
 
 
 
The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a &lt;frame&gt; or &lt;iframe&gt;. Sites can use this to avoid clickjacking attacks, by ensuring that their content is not embedded into other sites.
 
 
 
=== X-FRAME-OPTIONS Header Types  ===
 
 
 
There are three types of X-FRAME-OPTIONS headers.
 
* The first is X-FRAME-OPTIONS <b>DENY</b>, which prevents any domain from framing the content.
 
* The second option is X-FRAME-OPTIONS <b>SAMEORIGIN</b>, which only allows the current site to frame the content.
 
* The third, is the X-FRAME-OPTIONS <b>ALLOW-FROM</b> 'sitename' header, which permits the specified 'sitename' to frame this page. (e.g., ALLOW-FROM http&#58;//www.foo.com) The ALLOW-FROM option is a relatively recent addition (circa 2012) and may not be supported by all browsers yet.
 
 
 
=== Browser Support ===
 
 
 
The following browsers support X-FRAME-OPTIONS headers.
 
 
 
<table border="1">
 
<tr> <th>Browser</th> <th>Lowest version</th></tr>
 
<tr> <td>Internet Explorer</td> <td>8.0</td></tr>
 
<tr> <td>Firefox (Gecko)</td> <td>3.6.9 (1.9.2.9)</td></tr>
 
<tr> <td>Opera</td> <td>10.50</td> </tr> <tr> <td>Safari</td> <td>4.0</td></tr>
 
<tr> <td>Chrome</td> <td>4.1.249.1042</td> </tr>
 
</table>
 
 
 
Reference: [https://developer.mozilla.org/en-US/docs/The_X-FRAME-OPTIONS_response_header https://developer.mozilla.org/en-US/docs/The_X-FRAME-OPTIONS_response_header]
 
 
 
=== Implementation ===
 
 
 
To implement this protection, you need to add the header to any page that you want to protect from being clickjacked. One way to do this is to add the header manually to every page.  A possibly simpler way is to implement a filter that automatically adds the header to every page.
 
 
 
OWASP has an [[ClickjackFilter for Java EE|article and some code]] that provides all the details for implementing this in the Java EE environment.
 
 
 
The SDL blog has posted an [http://blogs.msdn.com/sdl/archive/2009/02/05/clickjacking-defense-in-ie8.aspx article] covering how to implement this in a .NET environment.
 
 
 
=== Limitations ===
 
 
 
* '''Per-page policy specifcation'''
 
The policy needs to be specifed for every page, which can complicate deployment. Providing the ability to enforce it for the entire site, at login time for instance, could simplify adoption.
 
 
 
* '''Problems with multi-domain sites'''
 
The current implementation does not allow the webmaster to provide a whitelist of domains that are allowed to frame the page. While whitelisting can be dangerous, in some cases a webmaster might have no choice but to use more than one hostname.
 
 
 
* '''Proxies'''
 
Web proxies are notorious for adding and stripping headers. If a web proxy strips the X-FRAME-OPTIONS header then the site loses its framing protection.
 
 
 
= Clickjacking defense for legacy browsers =
 
 
 
The following methodology will prevent a webpage from being framed even in legacy browsers.
 
 
 
In the document HEAD element, add the following:
 
 
 
First apply an ID to the style element itself:
 
 
 
&lt;style id=&quot;antiClickjack&quot;&gt;body{display:none !important;}&lt;/style&gt;
 
 
 
And then delete that style by its ID immediately after in the script:
 
 
 
&lt;script type=&quot;text/javascript&quot;&gt;
 
    if (self === top) {
 
        var antiClickjack = document.getElementById(&quot;antiClickjack&quot;);
 
        antiClickjack.parentNode.removeChild(antiClickjack);
 
    } else {
 
        top.location = self.location;
 
    }
 
&lt;/script&gt;
 
 
 
This way, everything can be in the document HEAD and you only need one method/taglib in your API.
 
 
 
Reference: [https://www.codemagi.com/blog/post/194 https://www.codemagi.com/blog/post/194]
 
 
 
= Other Cheatsheets =
 
{{Cheatsheet_Navigation}}
 
 
 
[[Category:Cheatsheets]]
 

Latest revision as of 13:58, 15 July 2019

Cheatsheets-header.jpg

The Cheat Sheet Series project has been moved to GitHub!

Please visit Clickjacking Defense Cheat Sheet to see the latest version of the cheat sheet.