-
-
Save 0x524c/ebb72ac9a21006f817c15647bf6c5843 to your computer and use it in GitHub Desktop.
hooks.js CSP example
This file contains hidden or 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
| // https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP | |
| // https://scotthelme.co.uk/content-security-policy-an-introduction/ | |
| // scanner: https://securityheaders.com/ | |
| const rootDomain = `your-domain.com`; // or your server IP for dev | |
| const directives = { | |
| 'img-src': [ | |
| "*", | |
| "'self'", | |
| "data:", | |
| ], | |
| 'font-src': [ | |
| "*", | |
| "'self'", | |
| "data:", | |
| ], | |
| 'style-src': [ | |
| "'self'", | |
| "'unsafe-inline'" | |
| ], | |
| 'default-src': [ | |
| "'self'", | |
| rootDomain, | |
| "ws://" + rootDomain, | |
| "https://*.google.com", | |
| "https://*.googleapis.com", | |
| "https://*.firebase.com", | |
| "https://*.gstatic.com", | |
| "https://*.cloudfunctions.net", | |
| "https://*.algolia.net", | |
| "https://*.facebook.com", | |
| "https://*.facebook.net", | |
| "https://*.stripe.com", | |
| "https://*.sentry.io", | |
| ], | |
| 'script-src': [ | |
| "'self'", | |
| "'unsafe-eval'", | |
| "'unsafe-inline'", | |
| rootDomain, | |
| "https://*.stripe.com", | |
| "https://*.facebook.com", | |
| "https://*.facebook.net", | |
| "https://*.sentry.io", | |
| "https://polyfill.io", | |
| // (req, res) => `'nonce-${res.locals.nonce}'`, | |
| ], | |
| 'frame-src': [ | |
| "https://*.stripe.com", | |
| "https://*.facebook.com", | |
| "https://*.facebook.net", | |
| ] | |
| }; | |
| let CSP = Object.entries(directives).map(([key, arr]) => key + ' ' + arr.join(' ')).join('; '); | |
| export async function handle(request, render) { | |
| const response = await render(request); | |
| console.log('handle', { ...response.headers }); | |
| return { | |
| ...response, | |
| headers: { | |
| ...response.headers, | |
| 'X-Frame-Options': 'SAMEORIGIN', | |
| 'Referrer-Policy': 'no-referrer', | |
| 'Feature-Policy': `microphone 'none'; geolocation 'none'`, | |
| 'Permissions-Policy': `geolocation=(self "${rootDomain}"), camera=(), fullscreen=*`, | |
| 'X-Content-Type-Options': `nosniff`, | |
| 'Content-Security-Policy': CSP | |
| } | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment