-
Suggestion
-
Resolution: Fixed
-
None
Description: Current HTTP headers do not contain the X-FRAME-Option, which helps prevents against Clickjacking attacks. A Clickjacking attack is similar to CSRF in which attacker can hijack a "click" on a web application from another "invisible" frame in the browser. Essentially, an attacker can force a user to click on a button that is invisible to him/her.
Exploit Scenario: An attacker crafts a malicious page such that when their victim clicks, they are actually clicking on the link or button in the vulnerable application hosted in an iframe. Thus, an attacker tricks the user into performing an action of the attacker's choosing by directing mouse input to the target application.
Short Term Solution: There are 2 options in the HTTP response header for projection, include:
DENY: If the header contains the DENY option, then the response will not be loaded within a frame.
SAMEORIGIN: If the header contains the SAMEORIGIN option, the response will be loaded within a frame only if the parent page is from the same origin.
Examples below:
Apache:
Add this to your httpd.conf:
Header always append x-frame-options SAMEORIGIN
Note that this is not a panacea for clickjacking.
SAMEORIGIN should be safe to use. See also JST-5291
- is cloned from
-
CONFCLOUD-22952 Enable X-FRAME-Option in HTTP response headers in order to provide clickjacking protection
- Closed
-
CONFSERVER-22952 Enable X-FRAME-Option in HTTP response headers in order to provide clickjacking protection
- Closed
- is related to
-
BSERV-9437 Enable X-FRAME-Options header to implement clickjacking protection
- Gathering Interest
- was cloned as
-
CRUC-5838 Enable X-FRAME-Option in HTTP response headers in order to improve clickjacking protection
- Closed
- is depended on by
-
SCT-1150 Loading...
- mentioned in
-
Page Loading...