-
Suggestion
-
Resolution: Unresolved
-
None
-
None
-
21
-
TLDR: Add X-FRAME-Options: SAMEORIGIN to all HTTP(S) pages (server config), and test that nothing breaks.
—
Description: HTTP headers on requests that start with /plugins/servlet/ 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.
We already set the X-Frame-Options header for most URLs exceptions are the login page and the /plugins/servlet/.* paths that are currently whitelisted.
The header should be added to those paths too.
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.
Workaround
Applying an additional header to the Apache HTTP server can mitigate this problem. Specifically using the SAMEORIGIN setting. 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.
For Apache:
- Add this to your httpd.conf file:
Header always setifempty X-Frame-Options SAMEORIGIN
- Ensure the headers module is enabled, the below is required in httpd.conf, or if using Ubuntu/Debian a2enmod headers will turn it on.
LoadModule headers_module modules/mod_headers.so
- Restart Apache.
Note that this is not a panacea for clickjacking. SAMEORIGIN should be safe to use and not provide any negative side-effects.
- relates to
-
JRASERVER-25143 Enable X-FRAME-Options header to implement clickjacking protection
- Closed
-
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
-
JRACLOUD-25143 Enable X-FRAME-Options header to implement clickjacking protection
- Closed
-
FE-3592 Enable X-FRAME-Option in HTTP response headers in order to improve clickjacking protection
- Closed
- causes
-
PS-117568 Loading...
- mentioned in
-
Page Loading...