| 123456789101112131415161718192021222324252627282930313233343536 |
- class Xss {
- constructor(xssOption) {
- const xss = require('xss');
- xssOption = xssOption || {};
- const tagWhiteList = xssOption.tagWhiteList || [];
- const attrWhiteList = xssOption.attrWhiteList || [];
- let whiteListContent = {};
- // default
- let option = {
- stripIgnoreTag: true,
- stripIgnoreTagBody: false, // see https://github.com/weseek/growi/pull/505
- css: false,
- whiteList: whiteListContent,
- escapeHtml: (html) => html, // resolve https://github.com/weseek/growi/issues/221
- };
- tagWhiteList.forEach(tag => {
- whiteListContent[tag] = attrWhiteList;
- });
- // create the XSS Filter instance
- this.myxss = new xss.FilterXSS(option);
- }
- process(document) {
- return this.myxss.process(document);
- }
- }
- module.exports = Xss;
|