2021-02-15 03:42:51 -05:00
|
|
|
const config = require('./config')
|
2021-02-16 16:21:13 -05:00
|
|
|
const { v4: uuidv4 } = require('uuid')
|
2017-10-21 19:22:48 -04:00
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const CspStrategy = {}
|
2017-10-21 19:22:48 -04:00
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const defaultDirectives = {
|
2017-10-21 19:22:48 -04:00
|
|
|
defaultSrc: ['\'self\''],
|
2021-06-06 12:25:55 -04:00
|
|
|
scriptSrc: ['\'self\'', 'vimeo.com', 'https://gist.github.com', 'www.slideshare.net'],
|
2017-10-21 19:22:48 -04:00
|
|
|
imgSrc: ['*'],
|
2018-12-20 16:38:31 -05:00
|
|
|
styleSrc: ['\'self\'', '\'unsafe-inline\'', 'https://github.githubassets.com'], // unsafe-inline is required for some libs, plus used in views
|
2018-10-03 21:02:55 -04:00
|
|
|
fontSrc: ['\'self\'', 'data:', 'https://public.slidesharecdn.com'],
|
2017-10-21 19:22:48 -04:00
|
|
|
objectSrc: ['*'], // Chrome PDF viewer treats PDFs as objects :/
|
2018-03-25 14:50:30 -04:00
|
|
|
mediaSrc: ['*'],
|
2017-10-21 19:22:48 -04:00
|
|
|
childSrc: ['*'],
|
|
|
|
connectSrc: ['*']
|
|
|
|
}
|
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const cdnDirectives = {
|
2017-10-21 19:22:48 -04:00
|
|
|
scriptSrc: ['https://cdnjs.cloudflare.com', 'https://cdn.mathjax.org'],
|
|
|
|
styleSrc: ['https://cdnjs.cloudflare.com', 'https://fonts.googleapis.com'],
|
|
|
|
fontSrc: ['https://cdnjs.cloudflare.com', 'https://fonts.gstatic.com']
|
|
|
|
}
|
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const disqusDirectives = {
|
2018-12-05 07:14:34 -05:00
|
|
|
scriptSrc: ['https://disqus.com', 'https://*.disqus.com', 'https://*.disquscdn.com'],
|
2018-03-30 10:33:32 -04:00
|
|
|
styleSrc: ['https://*.disquscdn.com'],
|
|
|
|
fontSrc: ['https://*.disquscdn.com']
|
|
|
|
}
|
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const googleAnalyticsDirectives = {
|
2018-03-30 10:33:32 -04:00
|
|
|
scriptSrc: ['https://www.google-analytics.com']
|
|
|
|
}
|
|
|
|
|
2021-02-15 03:42:51 -05:00
|
|
|
const dropboxDirectives = {
|
2020-08-22 19:29:53 -04:00
|
|
|
scriptSrc: ['https://www.dropbox.com', '\'unsafe-inline\'']
|
2020-08-22 19:11:31 -04:00
|
|
|
}
|
|
|
|
|
2017-10-21 19:22:48 -04:00
|
|
|
CspStrategy.computeDirectives = function () {
|
2021-02-15 03:42:51 -05:00
|
|
|
const directives = {}
|
2017-10-21 19:22:48 -04:00
|
|
|
mergeDirectives(directives, config.csp.directives)
|
|
|
|
mergeDirectivesIf(config.csp.addDefaults, directives, defaultDirectives)
|
2018-03-07 09:17:35 -05:00
|
|
|
mergeDirectivesIf(config.useCDN, directives, cdnDirectives)
|
2018-03-30 10:33:32 -04:00
|
|
|
mergeDirectivesIf(config.csp.addDisqus, directives, disqusDirectives)
|
|
|
|
mergeDirectivesIf(config.csp.addGoogleAnalytics, directives, googleAnalyticsDirectives)
|
2020-08-22 19:11:31 -04:00
|
|
|
mergeDirectivesIf(config.dropbox.appKey, directives, dropboxDirectives)
|
2017-10-21 19:22:48 -04:00
|
|
|
if (!areAllInlineScriptsAllowed(directives)) {
|
|
|
|
addInlineScriptExceptions(directives)
|
|
|
|
}
|
|
|
|
addUpgradeUnsafeRequestsOptionTo(directives)
|
2018-03-10 08:34:14 -05:00
|
|
|
addReportURI(directives)
|
2017-10-21 19:22:48 -04:00
|
|
|
return directives
|
|
|
|
}
|
|
|
|
|
|
|
|
function mergeDirectives (existingDirectives, newDirectives) {
|
2021-02-15 03:42:51 -05:00
|
|
|
for (const propertyName in newDirectives) {
|
|
|
|
const newDirective = newDirectives[propertyName]
|
2017-10-21 19:22:48 -04:00
|
|
|
if (newDirective) {
|
2021-02-15 03:42:51 -05:00
|
|
|
const existingDirective = existingDirectives[propertyName] || []
|
2017-10-21 19:22:48 -04:00
|
|
|
existingDirectives[propertyName] = existingDirective.concat(newDirective)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mergeDirectivesIf (condition, existingDirectives, newDirectives) {
|
|
|
|
if (condition) {
|
|
|
|
mergeDirectives(existingDirectives, newDirectives)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function areAllInlineScriptsAllowed (directives) {
|
|
|
|
return directives.scriptSrc.indexOf('\'unsafe-inline\'') !== -1
|
|
|
|
}
|
|
|
|
|
|
|
|
function addInlineScriptExceptions (directives) {
|
|
|
|
directives.scriptSrc.push(getCspNonce)
|
|
|
|
// TODO: This is the SHA-256 hash of the inline script in build/reveal.js/plugins/notes/notes.html
|
|
|
|
// Any more clean solution appreciated.
|
2020-02-01 06:50:07 -05:00
|
|
|
directives.scriptSrc.push('\'sha256-81acLZNZISnyGYZrSuoYhpzwDTTxi7vC1YM4uNxqWaM=\'')
|
2017-10-21 19:22:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getCspNonce (req, res) {
|
|
|
|
return "'nonce-" + res.locals.nonce + "'"
|
|
|
|
}
|
|
|
|
|
|
|
|
function addUpgradeUnsafeRequestsOptionTo (directives) {
|
2018-03-07 09:17:35 -05:00
|
|
|
if (config.csp.upgradeInsecureRequests === 'auto' && config.useSSL) {
|
2021-05-04 05:10:53 -04:00
|
|
|
directives.upgradeInsecureRequests = []
|
2017-10-21 19:22:48 -04:00
|
|
|
} else if (config.csp.upgradeInsecureRequests === true) {
|
2021-05-04 05:10:53 -04:00
|
|
|
directives.upgradeInsecureRequests = []
|
2017-10-21 19:22:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-10 08:34:14 -05:00
|
|
|
function addReportURI (directives) {
|
|
|
|
if (config.csp.reportURI) {
|
|
|
|
directives.reportUri = config.csp.reportURI
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-21 19:22:48 -04:00
|
|
|
CspStrategy.addNonceToLocals = function (req, res, next) {
|
2021-02-16 16:21:13 -05:00
|
|
|
res.locals.nonce = uuidv4()
|
2017-10-21 19:22:48 -04:00
|
|
|
next()
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = CspStrategy
|