Last active
August 11, 2024 09:27
-
-
Save chetans9/e07fb1db00caf1f11ee38a9e03514c5c to your computer and use it in GitHub Desktop.
Laravel Secure Headers Middleware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
class SecureHeadersMiddleware | |
{ | |
// Enumerate headers which you do not want in your application's responses. | |
// Great starting point would be to go check out @Scott_Helme's: | |
// https://securityheaders.com/ | |
private $unwantedHeaderList = [ | |
'X-Powered-By', | |
'Server', | |
]; | |
public function handle($request, Closure $next) | |
{ | |
$this->removeUnwantedHeaders($this->unwantedHeaderList); | |
$response = $next($request); | |
$response->headers->set('Referrer-Policy', 'no-referrer-when-downgrade'); | |
$response->headers->set('X-Content-Type-Options', 'nosniff'); | |
$response->headers->set('X-XSS-Protection', '1; mode=block'); | |
$response->headers->set('X-Frame-Options', 'DENY'); | |
$response->headers->set('Strict-Transport-Security', 'max-age:31536000; includeSubDomains'); | |
$response->headers->set('Content-Security-Policy', "style-src 'self'"); | |
return $response; | |
} | |
private function removeUnwantedHeaders($headerList) | |
{ | |
foreach ($headerList as $header) | |
header_remove($header); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this very useful snippet.
I've added the new Permission-Policy header as well and fixed a typo in your snippet:
max-age: -> max-age= on line 23