web xss攻击常用解决方案

web xss攻击常见解决方案

1.https://jsxss.com/zh/options….

js-xss可以过滤标签所有的属性 只显示文本

2.标签过滤

     var html = filterXSS(contentValue,{
                    onTag : function (tag, html, options) {
                        console.log(tag, html, options)
                        if (tag === 'script') {
                            return filterXSS(html);
                        } else {
                         // 不对其属性列表进行过滤
                            return html
                        }
                    }
                });  

3.白名单过滤

 var html = filterXSS(contentValue,{
                whiteList: {
                    span: ['style'],
                    div: ['style'],
                    p: ['style'],
                    b: ['style'],
                    strong: ['style']
                }
            });
    原文作者:Kanni
    原文地址: https://segmentfault.com/a/1190000020091548
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞