Skip to content
Snippets Groups Projects
Commit 7d5986a3 authored by Torben Hansen's avatar Torben Hansen Committed by Georg Ringer
Browse files

[TASK] Add HTTP security headers for backend by default


The TYPO3 backend currently adds a `X-Frame-Options: SAMEORIGIN`
HTTP security header to prevent clickjacking attacks. It is however
possible to use several other HTTP security headers for TYPO3 backend
requests as well.

This change adds the following HTTP security headers by default
for TYPO3 backend requests:

* `Strict-Transport-Security: max-age=31536000` (only if
  :php:`$GLOBALS[TYPO3_CONF_VARS][BE][lockSSL]` is active)
* `X-Content-Type-Options: nosniff`
* `Referrer-Policy: strict-origin-when-cross-origin`

Resolves: #100032
Releases: main
Signed-off-by: default avatarTorben Hansen <derhansen@gmail.com>
Change-Id: Icee3ecb92659e665440ff7a1505efa5f7033d6b5
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77946


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 7ce4f2b6
Branches
Tags
No related merge requests found
......@@ -35,6 +35,12 @@ class AdditionalResponseHeaders implements MiddlewareInterface
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
$response = $handler->handle($request);
// Remove HSTS header, if [BE][lockSSL] is not configured to use SSL
if ((bool)$GLOBALS['TYPO3_CONF_VARS']['BE']['lockSSL'] === false) {
unset($GLOBALS['TYPO3_CONF_VARS']['BE']['HTTP']['Response']['Headers']['strictTransportSecurity']);
}
foreach ($GLOBALS['TYPO3_CONF_VARS']['BE']['HTTP']['Response']['Headers'] ?? [] as $header) {
[$headerName, $value] = explode(':', $header, 2);
$response = $response->withAddedHeader($headerName, trim($value));
......
......@@ -1331,6 +1331,9 @@ return [
'Response' => [
'Headers' => [
'clickJackingProtection' => 'X-Frame-Options: SAMEORIGIN',
'strictTransportSecurity' => 'Strict-Transport-Security: max-age=31536000',
'avoidMimeTypeSniffing' => 'X-Content-Type-Options: nosniff',
'referrerPolicy' => 'Referrer-Policy: strict-origin-when-cross-origin',
// 'csp-report' => "Content-Security-Policy-Report-Only: default-src 'self'; style-src-attr 'unsafe-inline'; img-src 'self' data:",
// @todo later™: muuri.js is creating workers from `blob:` (?!?), <style> tags declare inline styles (?!?)
// 'csp-report' => "Content-Security-Policy-Report-Only: default-src 'self'; style-src-attr 'unsafe-inline'; style-src-elem 'self' 'unsafe-inline'; img-src 'self' data:; worker-src 'self' blob:;",
......
.. include:: /Includes.rst.txt
.. _important-100032-1677331239:
=====================================================================
Important: #100032 - Add HTTP security headers for backend by default
=====================================================================
See :issue:`100032`
Description
===========
The following HTTP security headers are now added by default for the TYPO3
backend:
* `Strict-Transport-Security: max-age=31536000` (only if
:php:`$GLOBALS[TYPO3_CONF_VARS][BE][lockSSL]` is active)
* `X-Content-Type-Options: nosniff`
* `Referrer-Policy: strict-origin-when-cross-origin`
The default HTTP security headers are globally configured in
`$GLOBALS['TYPO3_CONF_VARS']['BE']['HTTP']['Response']['Headers']` and include
a unique array key, so it is possible to individually unset/remove unwanted
headers.
.. important::
TYPO3 websites, which already use custom HTTP headers for the TYPO3 backend,
must ensure that individual HTTP security headers are not sent multiple
times.
.. index:: Backend, ext:backend
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment