. */ declare(strict_types=1); namespace FireflyIII\Http\Middleware; use Closure; use Illuminate\Http\Request; /** * * Class SecureHeaders */ class SecureHeaders { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * * @return mixed * @throws \Exception */ public function handle(Request $request, Closure $next) { // generate and share nonce. $nonce = base64_encode(random_bytes(16)); app('view')->share('JS_NONCE', $nonce); $response = $next($request); $googleScriptSrc = $this->getGoogleScriptSource(); $googleImgSrc = $this->getGoogleImgSource(); $csp = [ "default-src 'none'", "object-src 'self'", sprintf("script-src 'unsafe-inline' %s 'nonce-%s'", $googleScriptSrc, $nonce), "style-src 'self' 'unsafe-inline'", "base-uri 'self'", "font-src 'self' data:", "connect-src 'self'", sprintf("img-src 'self' data: https://api.tiles.mapbox.com %s", $googleImgSrc), "manifest-src 'self'", ]; $route = $request->route(); if (null !== $route && 'oauth/authorize' !== $route->uri) { $csp[] = "form-action 'self'"; } $featurePolicies = [ "geolocation 'none'", "midi 'none'", //"notifications 'none'", //"push 'self'", "sync-xhr 'self'", "microphone 'none'", "camera 'none'", "magnetometer 'none'", "gyroscope 'none'", "speaker 'none'", //"vibrate 'none'", "fullscreen 'self'", "payment 'none'", ]; $disableFrameHeader = config('firefly.disable_frame_header'); $disableCSP = config('firefly.disable_csp_header'); if (false === $disableFrameHeader) { $response->header('X-Frame-Options', 'deny'); } if (false === $disableCSP && !$response->headers->has('Content-Security-Policy')) { $response->header('Content-Security-Policy', implode('; ', $csp)); } $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)); return $response; } /** * @return string */ private function getGoogleImgSource(): string { if ('' !== config('firefly.analytics_id')) { return 'https://www.google-analytics.com/'; } return ''; } /** * Return part of a CSP header allowing scripts from Google. * * @return string */ private function getGoogleScriptSource(): string { if ('' !== config('firefly.analytics_id')) { return 'https://www.googletagmanager.com/gtag/js https://www.google-analytics.com/analytics.js'; } return ''; } }