mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
Allow additional CSP directives to be defined for specific views (#19550)
GitOrigin-RevId: 19bf1004479b5106e64e9c13d58d69e328cc12f1
This commit is contained in:
parent
17e8c70069
commit
c91d99de80
2 changed files with 17 additions and 2 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue