wikijs-fork/server/middlewares/security.js

47 lines
1.3 KiB
JavaScript
Raw Normal View History

/* global WIKI */
2017-02-09 01:52:37 +00:00
2016-08-17 00:56:55 +00:00
/**
* Security Middleware
*
* @param {Express Request} req Express request object
* @param {Express Response} res Express response object
* @param {Function} next next callback function
* @return {any} void
*/
2017-02-09 01:52:37 +00:00
module.exports = function (req, res, next) {
// -> Disable X-Powered-By
2017-07-25 02:37:13 +00:00
req.app.disable('x-powered-by')
2016-08-17 00:56:55 +00:00
2017-02-09 01:52:37 +00:00
// -> Disable Frame Embedding
if (WIKI.config.security.securityIframe) {
res.set('X-Frame-Options', 'deny')
}
2016-08-17 00:56:55 +00:00
2017-02-09 01:52:37 +00:00
// -> Re-enable XSS Fitler if disabled
res.set('X-XSS-Protection', '1; mode=block')
2016-08-17 00:56:55 +00:00
2017-02-09 01:52:37 +00:00
// -> Disable MIME-sniffing
res.set('X-Content-Type-Options', 'nosniff')
2016-08-17 00:56:55 +00:00
2017-02-09 01:52:37 +00:00
// -> Disable IE Compatibility Mode
res.set('X-UA-Compatible', 'IE=edge')
2016-08-17 00:56:55 +00:00
2017-10-13 03:24:48 +00:00
// -> Disables referrer header when navigating to a different origin
if (WIKI.config.security.securityReferrerPolicy) {
res.set('Referrer-Policy', 'same-origin')
}
// -> Enforce HSTS
if (WIKI.config.security.securityHSTS) {
2021-03-19 01:53:55 +00:00
res.set('Strict-Transport-Security', `max-age=${WIKI.config.security.securityHSTSDuration}; includeSubDomains`)
}
2016-08-17 00:56:55 +00:00
// -> Prevent Open Redirect from user provided URL
if (WIKI.config.security.securityOpenRedirect) {
// Strips out all repeating / character in the provided URL
2020-05-30 20:42:48 +00:00
req.url = req.url.replace(/(\/)(?=\/*\1)/g, '')
}
2017-02-09 01:52:37 +00:00
return next()
}