From 100412267ad5d193d2131e3fa89090846267b72d Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 7 Jan 2016 12:47:46 -0800 Subject: extra security headers, revert or fix if functionality is blocked --- boot.php | 15 +++++++++++++++ version.inc | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 4c2cff09b..152fb426b 100755 --- a/boot.php +++ b/boot.php @@ -874,6 +874,11 @@ class App { } } + function get_scheme() { + return $this->scheme; + } + + function get_hostname() { return $this->hostname; } @@ -2121,6 +2126,16 @@ function construct_page(&$a) { $profile = $a->profile; header("Content-type: text/html; charset=utf-8"); + if($a->get_scheme() === 'https') + header("Strict-Transport-Security: max-age=31536000"); + + header("Content-Security-Policy: script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline'"); + + if($a->config['system']['x_security_headers']) { + header("X-Frame-Options: SAMEORIGIN"); + header("X-Xss-Protection: 1; mode=block;"); + header("X-Content-Type-Options: nosniff"); + } require_once(theme_include( ((x($a->page, 'template')) ? $a->page['template'] : 'default' ) . '.php' ) diff --git a/version.inc b/version.inc index be2d3de4a..9846c0954 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-01-06.1270H +2016-01-07.1271H -- cgit v1.2.3