Project

General

Profile

Actions

Bug #81837

closed

SSL mixed content issues in backend when HTTPS server var is not set

Added by Ronald Kools almost 7 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
System/Bootstrap/Configuration
Target version:
-
Start date:
2017-07-11
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
SSL, backend
Complexity:
Is Regression:
Sprint Focus:

Description

Using SSL in the backend of Typo3 8.7.x is causing mixed content errors in javascript when the $_SERVER['HTTPS'] variable is not available. As a result, the Install tool is not accessible anymore and you can't use the close button when editting a record. Somehow the form action reverts to http:// even while everything else is in https. However, if you open the right panel (list) in a new browser window, everything is fine and it does work.

The cause of the problem is that $_SERVER['HTTPS'] is hardcoded in the TYPO3_SSL and if this check fails (in our case because we don't have the HTTPS server variable but we are using a custom variable X-ClientHTTPS) some scripts revert to http (like FormEngine.js which somewhere seems to change your https URL to http) .

See line 3016 in GeneralUtility):

            case 'TYPO3_SSL':
                $proxySSL = trim($GLOBALS['TYPO3_CONF_VARS']['SYS']['reverseProxySSL']);
                if ($proxySSL === '*') {
                    $proxySSL = $GLOBALS['TYPO3_CONF_VARS']['SYS']['reverseProxyIP'];
                }
                if (self::cmpIP($_SERVER['REMOTE_ADDR'], $proxySSL)) {
                    $retVal = true;
                } else {
                    $retVal = $_SERVER['SSL_SESSION_ID'] || strtolower($_SERVER['HTTPS']) === 'on' || (string)$_SERVER['HTTPS'] === '1';
                }
                break;

Setting "lockSSL" to true causes an endless loop as our server is already configured for https, but because the TYPO3_SSL returns false (see above) it assumes you are still in http and thus it redirects.

We fixed it by setting the variable based on our own variable using .htaccess, but better solution would be to make the server variable configurable, so it is possible to use your own variable in the TYPO3_SSL check.

Our fix:

RewriteCond "%{HTTP:X-ClientHTTPS}" 1
RewriteRule .* - [E=HTTPS:on]

Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #32341: $_SERVER['HTTPS'] vs. $_SERVER['HTTP_HTTPS'] nginxClosedMichael Stucki2011-12-06

Actions
Related to TYPO3 Core - Bug #29693: Respect HTTP_X_FORWARDED_PROTO in SSL checkRejectedMichael Stucki2011-09-12

Actions
Actions #1

Updated by Benni Mack almost 7 years ago

  • Status changed from New to Needs Feedback

Are you using a proxy actually? Or are you using apache itself but not using "HTTPS=on"?

Actions #2

Updated by Ronald Kools almost 7 years ago

Benni Mack wrote:

Are you using a proxy actually? Or are you using apache itself but not using "HTTPS=on"?

The latter: in our case Apache is not returning "HTTPS=on". So by checking the alternative variable that we do have, we now set the HTTPS=on using the .htaccess (see solution above).
However I heard from Andreas Fernandez in the Slack Typo3 channel (typo3-cms-backend-js) that Nginx doesn't set this variable by default either, so that might give similar problems.

Actions #3

Updated by Sybille Peters over 6 years ago

  • Related to Bug #32341: $_SERVER['HTTPS'] vs. $_SERVER['HTTP_HTTPS'] nginx added
Actions #4

Updated by Sybille Peters over 6 years ago

  • Related to Bug #29693: Respect HTTP_X_FORWARDED_PROTO in SSL check added
Actions #5

Updated by Sybille Peters over 6 years ago

I added some related issues to this one because there have already been discussions before. (Not exactly the same scenario but similar).

It is not clear to me: Why is the server variable HTTPS not set on your Apache httpd configuration? What speaks against setting it on the server side (as you are already doing)?

IMHO I would configure this on the server-side to the de facto HTTPS server variable. I would not add hooks and configuration variables unless really necessary but instead try to adhere to the standards or de facto standards.

As far as I know other CMSs also rely on the HTTPS variable and most info I found online goes in that direction. Newer Nginx versions apparently set it by default. If not, you can add it to the configuration very easily.

Actions #6

Updated by Sybille Peters over 6 years ago

In any case, I think to comply with the PHP documentation the check could be changed to check if $_SERVER['HTTPS'] exists and is non empty (instead of checking if equals "on" or '1'). Except for the mentioned exception for IIS.

For example:

if ( ...  || (!empty($_SERVER['HTTPS'] && strtolower($_SERVER['HTTPS']) !== 'off'))

see docs:

"_'HTTPS'
Set to a non-empty value if the script was queried through the HTTPS protocol._

Note: Note that when using ISAPI with IIS, the value will be off if the request was not made through the HTTPS protocol."

(http://php.net/manual/en/reserved.variables.server.php)

Actions #7

Updated by Ronald Kools over 6 years ago

Yes, that check would be perfect.

The reason we don't have the $_SERVER['HTTPS'] variable has to do with our loadbalancer rules in combination with a Varnish caching layer. These rules apply certain redirects based on this special X-ClientHTTPS variable because we have a couple of sites on the same IP.

Changing the check to your suggestion would be perfect. ;-)

Actions #8

Updated by Frank Nägler over 6 years ago

  • Category changed from Backend JavaScript to System/Bootstrap/Configuration
Actions #9

Updated by Gerrit Code Review about 6 years ago

  • Status changed from Needs Feedback to Under Review

Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55750

Actions #10

Updated by Gerrit Code Review about 6 years ago

Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55750

Actions #11

Updated by Gerrit Code Review about 6 years ago

Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55750

Actions #12

Updated by Gerrit Code Review about 6 years ago

Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55750

Actions #13

Updated by Gerrit Code Review about 6 years ago

Patch set 5 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55750

Actions #14

Updated by Gerrit Code Review about 6 years ago

Patch set 1 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55764

Actions #15

Updated by Alexander Opitz about 6 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #16

Updated by Urs Braem about 6 years ago

We had a similar error that matched the behaviour exactly: "As a result, the Install tool is not accessible anymore and you can't use the close button when editting a record."

For the record, we could solve it without the patch using the following params

Disable Apache mod_remoteip

$GLOBALS['TYPO3_CONF_VARS']['SYS']['reverseProxyIP'] = '127.0.0.1';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['reverseProxyHeaderMultiValue'] = 'last';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['reverseProxySSL'] = '*';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['trustedHostsPattern'] = 'www.mysite.com';

Caveat: this setting will move the client IP to HTTP_X_FORWARDED_FOR instead of REMOTE_ADDR in the request.

Actions #17

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF