diff --git a/server/helpers/page.js b/server/helpers/page.js index e2e03648..12d4b022 100644 --- a/server/helpers/page.js +++ b/server/helpers/page.js @@ -35,6 +35,8 @@ module.exports = { rawPath = rawPath.replace(unsafeCharsRegex, '') if (rawPath === '') { rawPath = 'home' } + rawPath = rawPath.replaceAll('\\', '').replaceAll('//', '').replaceAll(/\.\.+/ig, '') + // Extract Info let pathParts = _.filter(_.split(rawPath, '/'), p => { p = _.trim(p)