-
Bug
-
Resolution: Fixed
-
Highest
-
6.2.7, 7.0.2
-
6.02
-
4.3
-
60
-
Severity 3 - Minor
-
42
-
-
NOTE: This suggestion is for JIRA Server. Using JIRA Cloud? See the corresponding suggestion.
TLDR: Add X-FRAME-Options: SAMEORIGIN to all HTTP(S) pages (server config), and test that nothing breaks.
—
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.
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 append 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.
SAMEORIGIN will prevent the Issue Collector from loading when embedded in a Confluence page
- causes
-
JSWSERVER-19912 Implement Configuration Option for CSP Header
- Gathering Interest
- is related to
-
BSERV-9437 Enable X-FRAME-Options header to implement clickjacking protection
- Gathering Interest
- relates to
-
JRASERVER-25145 Introduce "X-XSS-Protection" HTTP header
- Closed
-
RAID-637 Loading...
-
RAID-705 Loading...
- mentioned in
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
- was cloned as
-
JSB-147 Loading...