mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 21:31:36 +02:00
Allow additional CSP directives to be defined for specific views (#19550)
GitOrigin-RevId: 19bf1004479b5106e64e9c13d58d69e328cc12f1
This commit is contained in:
@@ -6,6 +6,7 @@ module.exports = function ({
|
||||
reportPercentage,
|
||||
reportOnly = false,
|
||||
exclude = [],
|
||||
viewDirectives = {},
|
||||
}) {
|
||||
const header = reportOnly
|
||||
? 'Content-Security-Policy-Report-Only'
|
||||
@@ -37,7 +38,12 @@ module.exports = function ({
|
||||
|
||||
res.locals.scriptNonce = scriptNonce
|
||||
|
||||
const policy = buildViewPolicy(scriptNonce, reportPercentage, reportUri)
|
||||
const policy = buildViewPolicy(
|
||||
scriptNonce,
|
||||
reportPercentage,
|
||||
reportUri,
|
||||
viewDirectives[view]
|
||||
)
|
||||
|
||||
// Note: https://csp-evaluator.withgoogle.com/ is useful for checking the policy
|
||||
|
||||
@@ -72,11 +78,17 @@ const buildDefaultPolicy = (reportUri, styleSrc) => {
|
||||
return directives.join('; ')
|
||||
}
|
||||
|
||||
const buildViewPolicy = (scriptNonce, reportPercentage, reportUri) => {
|
||||
const buildViewPolicy = (
|
||||
scriptNonce,
|
||||
reportPercentage,
|
||||
reportUri,
|
||||
viewDirectives
|
||||
) => {
|
||||
const directives = [
|
||||
`script-src 'nonce-${scriptNonce}' 'unsafe-inline' 'strict-dynamic' https: 'report-sample'`, // only allow scripts from certain sources
|
||||
`object-src 'none'`, // forbid loading an "object" element
|
||||
`base-uri 'none'`, // forbid setting a "base" element
|
||||
...(viewDirectives ?? []),
|
||||
]
|
||||
|
||||
if (reportUri) {
|
||||
|
||||
@@ -977,6 +977,9 @@ module.exports = {
|
||||
reportPercentage: parseFloat(process.env.CSP_REPORT_PERCENTAGE) || 0,
|
||||
reportUri: process.env.CSP_REPORT_URI,
|
||||
exclude: [],
|
||||
viewDirectives: {
|
||||
'app/views/project/ide-react': [`img-src 'self' data: blob:`],
|
||||
},
|
||||
},
|
||||
|
||||
unsupportedBrowsers: {
|
||||
|
||||
Reference in New Issue
Block a user