X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fcsp.ts;h=e2a75a17ebae7427e70bf6da5ca2e9782bfdd48b;hb=c0b5a5eb4be94038ce4d44e03cd14e2f5a844868;hp=d484b3021db323a5f68b5f5e29daa7ba3b11ce18;hpb=6dd9de95dfa39bd5c1faed00d1dbd52cd112bae0;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/csp.ts b/server/middlewares/csp.ts index d484b3021..e2a75a17e 100644 --- a/server/middlewares/csp.ts +++ b/server/middlewares/csp.ts @@ -1,36 +1,34 @@ -import * as helmet from 'helmet' +import { contentSecurityPolicy } from 'helmet' import { CONFIG } from '../initializers/config' const baseDirectives = Object.assign({}, { - defaultSrc: ["'none'"], // by default, not specifying default-src = '*' - connectSrc: ['*', 'data:'], - mediaSrc: ["'self'", 'https:', 'blob:'], - fontSrc: ["'self'", 'data:'], - imgSrc: ["'self'", 'data:'], - scriptSrc: ["'self' 'unsafe-inline' 'unsafe-eval'"], - styleSrc: ["'self' 'unsafe-inline'"], - objectSrc: ["'none'"], // only define to allow plugins, else let defaultSrc 'none' block it - formAction: ["'self'"], - frameAncestors: ["'none'"], - baseUri: ["'self'"], - manifestSrc: ["'self'"], - frameSrc: ["'self'"], // instead of deprecated child-src / self because of test-embed - workerSrc: ["'self'", 'blob:'] // instead of deprecated child-src + defaultSrc: [ '\'none\'' ], // by default, not specifying default-src = '*' + connectSrc: [ '*', 'data:' ], + mediaSrc: [ '\'self\'', 'https:', 'blob:' ], + fontSrc: [ '\'self\'', 'data:' ], + imgSrc: [ '\'self\'', 'data:', 'blob:' ], + scriptSrc: [ '\'self\' \'unsafe-inline\' \'unsafe-eval\'', 'blob:' ], + styleSrc: [ '\'self\' \'unsafe-inline\'' ], + objectSrc: [ '\'none\'' ], // only define to allow plugins, else let defaultSrc 'none' block it + formAction: [ '\'self\'' ], + frameAncestors: [ '\'none\'' ], + baseUri: [ '\'self\'' ], + manifestSrc: [ '\'self\'' ], + frameSrc: [ '\'self\'' ], // instead of deprecated child-src / self because of test-embed + workerSrc: [ '\'self\'', 'blob:' ] // instead of deprecated child-src }, CONFIG.CSP.REPORT_URI ? { reportUri: CONFIG.CSP.REPORT_URI } : {}, - CONFIG.WEBSERVER.SCHEME === 'https' ? { upgradeInsecureRequests: true } : {} + CONFIG.WEBSERVER.SCHEME === 'https' ? { upgradeInsecureRequests: [] } : {} ) -const baseCSP = helmet.contentSecurityPolicy({ +const baseCSP = contentSecurityPolicy({ directives: baseDirectives, - browserSniff: false, reportOnly: CONFIG.CSP.REPORT_ONLY }) -const embedCSP = helmet.contentSecurityPolicy({ - directives: Object.assign({}, baseDirectives, { frameAncestors: ['*'] }), - browserSniff: false, // assumes a modern browser, but allows CDN in front +const embedCSP = contentSecurityPolicy({ + directives: Object.assign({}, baseDirectives, { frameAncestors: [ '*' ] }), reportOnly: CONFIG.CSP.REPORT_ONLY })