firefly-iii/app/Http/Middleware/SecureHeaders.php

116 lines
3.7 KiB
PHP
Raw Normal View History

2018-08-25 00:55:32 -05:00
<?php
/**
* SecureHeaders.php
2020-01-31 00:32:04 -06:00
* Copyright (c) 2019 james@firefly-iii.org
2018-08-25 00:55:32 -05:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-08-25 00:55:32 -05:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2018-08-25 00:55:32 -05:00
*
* This program is distributed in the hope that it will be useful,
2018-08-25 00:55:32 -05:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2018-08-25 00:55:32 -05:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-08-25 00:55:32 -05:00
*/
declare(strict_types=1);
namespace FireflyIII\Http\Middleware;
use Closure;
use Exception;
2018-08-25 00:55:32 -05:00
use Illuminate\Http\Request;
/**
*
* Class SecureHeaders
*/
class SecureHeaders
{
/**
2020-01-04 04:00:44 -06:00
* Handle an incoming request.
2018-08-25 00:55:32 -05:00
*
* @param Request $request
* @param Closure $next
2018-08-25 00:55:32 -05:00
*
* @throws Exception
2018-08-25 00:55:32 -05:00
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
2020-01-10 22:28:20 -06:00
// generate and share nonce.
2020-01-04 04:00:44 -06:00
$nonce = base64_encode(random_bytes(16));
app('view')->share('JS_NONCE', $nonce);
2020-01-16 21:30:44 -06:00
$response = $next($request);
$trackingScriptSrc = $this->getTrackingScriptSource();
$csp = [
"default-src 'none'",
"object-src 'self'",
2020-01-16 21:30:44 -06:00
sprintf("script-src 'unsafe-inline' 'nonce-%1s' %2s", $nonce, $trackingScriptSrc),
"style-src 'self' 'unsafe-inline'",
"base-uri 'self'",
2019-05-04 13:58:43 -05:00
"font-src 'self' data:",
"connect-src 'self'",
2020-04-28 23:37:02 -05:00
sprintf("img-src 'self' data: https://a.tile.openstreetmap.org https://b.tile.openstreetmap.org https://c.tile.openstreetmap.org https://api.tiles.mapbox.com %s", $trackingScriptSrc),
"manifest-src 'self'",
];
2019-01-27 11:24:11 -06:00
$route = $request->route();
2019-02-13 10:38:41 -06:00
if (null !== $route && 'oauth/authorize' !== $route->uri) {
2019-01-27 10:15:40 -06:00
$csp[] = "form-action 'self'";
}
2018-08-25 00:55:32 -05:00
2018-08-25 03:49:52 -05:00
$featurePolicies = [
"geolocation 'none'",
"midi 'none'",
//"notifications 'none'",
//"push 'self'",
2018-08-25 03:49:52 -05:00
"sync-xhr 'self'",
"microphone 'none'",
"camera 'none'",
"magnetometer 'none'",
"gyroscope 'none'",
"speaker 'none'",
//"vibrate 'none'",
2018-08-25 03:49:52 -05:00
"fullscreen 'self'",
"payment 'none'",
];
$disableFrameHeader = config('firefly.disable_frame_header');
2020-01-10 22:28:20 -06:00
$disableCSP = config('firefly.disable_csp_header');
if (false === $disableFrameHeader) {
$response->header('X-Frame-Options', 'deny');
}
2020-01-10 22:28:20 -06:00
if (false === $disableCSP && !$response->headers->has('Content-Security-Policy')) {
2019-07-16 12:21:58 -05:00
$response->header('Content-Security-Policy', implode('; ', $csp));
}
2018-08-25 03:49:52 -05:00
$response->header('X-XSS-Protection', '1; mode=block');
$response->header('X-Content-Type-Options', 'nosniff');
$response->header('Referrer-Policy', 'no-referrer');
$response->header('Feature-Policy', implode('; ', $featurePolicies));
2018-08-25 00:55:32 -05:00
return $response;
}
2020-01-10 22:28:20 -06:00
/**
* Return part of a CSP header allowing scripts from Google.
*
* @return string
*/
2020-01-16 21:30:44 -06:00
private function getTrackingScriptSource(): string
2020-01-10 22:28:20 -06:00
{
if ('' !== (string) config('firefly.tracker_site_id') && '' !== (string) config('firefly.tracker_url')) {
return (string) config('firefly.tracker_url');
2020-01-10 22:28:20 -06:00
}
return '';
}
}