-
-
Save vanthao03596/bf5b7c42d577f61fc35f326c6720af22 to your computer and use it in GitHub Desktop.
CSP Middleware - the simple CSP middleware I use across all of my projects.
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 | |
$production = env('APP_ENV', 'production') === 'production'; | |
return [ | |
// Toggle Report-Only based on production | |
'report_only' => ! $production, | |
// Policy directives | |
'policy' => [ | |
// Defaults to Report URI CSP Wizard URL, which is the easiest way to add a CSP to an existing site. | |
// Check it out at: https://report-uri.com/ | |
'report-uri' => ["https://<subdomain>.report-uri.com/r/d/csp/wizard"], | |
'default-src' => ["'none'"], | |
'connect-src' => ["'none'"], | |
'font-src' => ["'none'"], | |
'frame-src' => ["'none'"], | |
'img-src' => ["'self'"], | |
'manifest-src' => ["'self'"], | |
'script-src' => ["'report-sample'", "'self'"], | |
'style-src' => ["'self'"], | |
'form-action' => ["'none'"], | |
'frame-ancestors' => ["'none'"], | |
], | |
]; |
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; | |
use Illuminate\Support\Facades\Vite; | |
use Illuminate\Support\Str; | |
/** | |
* Simple Content Security Policy middleware. | |
* | |
* Provides a super simple way to add a CSP to a Laravel app. | |
* Simply add the required directives to your config/csp.php file. | |
* Hooks directly into Vite to generate a Nonce for scripts and styles. | |
* | |
* !!! Don't forget to add the CSP middleware into the 'web' middleware group !!! | |
* | |
* @author Stephen Rees-Carter <https://stephenreescarter.net/> | |
* @see https://larasec.substack.com/p/in-depth-content-security-policy | |
*/ | |
class CSP | |
{ | |
public function handle($request, Closure $next) | |
{ | |
Vite::useCspNonce(); | |
$response = $next($request); | |
$csp = config('csp'); | |
$csp['policy']['script-src'][] = "'nonce-".Vite::cspNonce()."'"; | |
$csp['policy']['style-src'][] = "'nonce-".Vite::cspNonce()."'"; | |
if (app()->isLocal()) { | |
$vite = Vite::asset(''); | |
$csp['policy']['connect-src'][] = 'wss:'.Str::after($vite, 'https:'); | |
$csp['policy']['script-src'][] = $vite; | |
$csp['policy']['style-src'][] = $vite; | |
} | |
$policy = collect($csp['policy']) | |
->filter() | |
->map(fn ($value, $key) => "{$key} ".collect($value)->filter()->implode(' ')) | |
->implode(' ; '); | |
$header = $csp['report_only'] ? 'Content-Security-Policy-Report-Only' : 'Content-Security-Policy'; | |
$response->headers->set($header, $policy); | |
return $response; | |
} | |
} |
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
<!-- Include the nonce with the globally shared $cspNonce variable --> | |
<script src="https://evilhacker.dev/script.js" nonce="{{ Vite::cspNonce() }}" defer></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment