ASP防XSS代码

原作是在GitHub上,基于Node.js所写。但是。。ASP的JS引擎跟V8又有些不同。。于是,嗯。。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

<%

Function AntiXSS_VbsTrim(s)

    AntiXSS_VbsTrim=Trim(s)

End Function

    

%>

<script language="javascript" runat="server">

//原GITHUB:https://github.com/leizongmin/js-xss/blob/master/index.js

//过滤XSS攻击 @author 老雷<leizongmin@gmail.com>

//转换到ASP by zsx(http://www.zsxsoft.com)

function AntiXSS_run(html){

    String.prototype.trim=function(){return AntiXSS_VbsTrim(this)};

    return AntiXSS(html,AntiXSS_config);

}

var AntiXSS_noTag = function(text) {

    return text.replace(/</g, '<').replace(/>/g, '>');

};

function AntiXSS(html, options) {

    var whiteList = options.whiteList;

    var onTagAttr = options.onTagAttr;

    var onIgnoreTag = options.onIgnoreTag;

    var rethtml = '';

    var lastPos = 0;

    var tagStart = false;

    var quoteStart = false;

    var currentPos = 0;

    var filterAttributes = function(tagName, attrs) {

        tagName = tagName.toLowerCase();

        var whites = whiteList[tagName];

        var lastPos = 0;

        var _attrs = [];

        var tmpName = false;

        var hasSprit = false;

        var addAttr = function(name, value) {

            name = name.trim();

            if (!hasSprit && name === '/') {

                hasSprit = true;

                return;

            };

            name = name.replace(/[^a-zA-Z0-9_:\.\-]/img, '').toLowerCase();

            if (name.length < 1) return;

            if (whites.join().indexOf(name) !== -1) {

                if (value) {

                    value = value.trim().replace(/"/g, '"e;');

                    value = value.replace(/&#([a-zA-Z0-9]*);?/img,

                    function(str, code) {

                        code = parseInt(code);

                        return String.fromCharCode(code);

                    });

                    var _value = '';

                    for (var i = 0, len = value.length; i < len; i++) {

                        _value += value.charCodeAt(i) < 32 ? ' ': value.split("")[i];

                    }

                    value = _value.trim();

                    var newValue = onTagAttr(tagName, name, value);

                    if (typeof(newValue) !== 'undefined') {

                        value = newValue;

                    }

                }

                _attrs.push(name + (value ? '="' + value + '"'''));

            }

        };

        for (var i = 0, len = attrs.length; i < len; i++) {

            var c = attrs.split("")[i];

            if (tmpName === false && c === '=') {

                tmpName = attrs.slice(lastPos, i);

                lastPos = i + 1;

                continue;

            }

            if (tmpName !== false) {

                if (i === lastPos && (c === '"' || c === "'")) {

                    var j = attrs.indexOf(c, i + 1);

                    if (j === -1) {

                        break;

                    } else {

                        var v = attrs.slice(lastPos + 1, j).trim();

                        addAttr(tmpName, v);

                        tmpName = false;

                        i = j;

                        lastPos = i + 1;

                        continue;

                    }

                }

            }

            if (c === ' ') {

                var v = attrs.slice(lastPos, i).trim();

                if (tmpName === false) {

                    addAttr(v);

                } else {

                    addAttr(tmpName, v);

                }

                tmpName = false;

                lastPos = i + 1;

                continue;

            }

        }

        if (lastPos < attrs.length) {

            if (tmpName === false) {

                addAttr(attrs.slice(lastPos));

            } else {

                addAttr(tmpName, attrs.slice(lastPos));

            }

        }

        if (hasSprit) _attrs.push('/');

        return _attrs.join(' ');

    };

    var addNewTag = function(tag, end) {

        rethtml += AntiXSS_noTag(html.slice(lastPos, tagStart));

        lastPos = end + 1;

        var spos = tag.slice(0, 2) === '</' ? 2: 1;

        var i = tag.indexOf(' ');

        if (i === -1) {

            var tagName = tag.slice(spos, tag.length - 1).trim();

        } else {

            var tagName = tag.slice(spos, i + 1).trim();

        }

        tagName = tagName.toLowerCase();

        if (tagName in whiteList) {

            if (i === -1) {

                rethtml += tag.slice(0, spos) + tagName + '>';

            } else {

                var attrs = filterAttributes(tagName, tag.slice(i + 1, tag.length - 1).trim());

                rethtml += tag.slice(0, spos) + tagName + (attrs.length > 0 ? ' ' + attrs: '') + '>';

            }

        } else {

            var options = {

                isClosing: (spos === 2),

                position: rethtml.length,

                originalPosition: currentPos - tag.length + 1

            };

            var tagHtml = onIgnoreTag(tagName, tag, options);

            if (typeof(tagHtml) === 'undefined') {

                tagHtml = AntiXSS_noTag(tag);

            }

            rethtml += tagHtml;

        }

    };

    for (var currentPos = 0, len = html.length; currentPos < len; currentPos++) {

        var c = html.split("")[currentPos];

        if (tagStart === false) {

            if (c === '<') {

                tagStart = currentPos;

                continue;

            }

        } else {

            if (quoteStart === false) {

                if (c === '<') {

                    rethtml += AntiXSS_noTag(html.slice(lastPos, currentPos));

                    tagStart = currentPos;

                    lastPos = currentPos;

                    continue;

                }

                if (c === '>') {

                    addNewTag(html.slice(tagStart, currentPos + 1), currentPos);

                    tagStart = false;

                    continue;

                }

                if (c === '"' || c === "'") {

                    quoteStart = c;

                    continue;

                }

            else {

                if (c === quoteStart) {

                    quoteStart = false;

                    continue;

                }

            }

        }

    }

    if (lastPos < html.length) {

        rethtml += AntiXSS_noTag(html.substr(lastPos));

    }

    return rethtml;

};

var AntiXSS_config = {

    "whiteList": {

//      h1: ['style', 'class'],

//      h2: ['style', 'class'],

//      h3: ['style', 'class'],

//      h4: ['style', 'class'],

//      h5: ['style', 'class'],

//      h6: ['style', 'class'],

        hr: ['style''class'],

        span: ['style''class'],

        strong: ['style''class'],

        b: ['style''class'],

        i: ['style''class'],

        br: [],

        p: ['style''class'],

        pre: ['style''class'],

        code: ['style''class'],

        a: ['style''class''target''href''title' ,'rel'],

        img: ['style''class''src''alt''title'],

        div: ['style''class'],

        table: ['style''class''width''border'],

        tr: ['style''class'],

        td: ['style''class''width''colspan'],

        th: ['style''class''width''colspan'],

        tbody: ['style''class'],

        ul: ['style''class'],

        li: ['style''class'],

        ol: ['style''class'],

        dl: ['style''class'],

        dt: ['style''class'],

        em: ['style'],

//      cite: ['style'],

//      section: ['style', 'class'],

//      header: ['style', 'class'],

//      footer: ['style', 'class'],

        blockquote: ['style''class']//,

//      audio: ['autoplay', 'controls', 'loop', 'preload', 'src'],

//      video: ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width']

    },

    "onTagAttr"function(tag, attr, value) {

        if (attr === 'href' || attr === 'src') {

            if (/\/\*|\*\//mg.test(value)) {

                return '#';

            }

            if (/^[\s"'`]*((j\s*a\s*v\s*a|v\s*b|l\s*i\s*v\s*e)\s*s\s*c\s*r\s*i\s*p\s*t\s*|m\s*o\s*c\s*h\s*a):/ig.test(value)) {

                return '#';

            }

        } else if (attr === 'style') {

            if (/\/\*|\*\//mg.test(value)) {

                return '#';

            }

            if (/((j\s*a\s*v\s*a|v\s*b|l\s*i\s*v\s*e)\s*s\s*c\s*r\s*i\s*p\s*t\s*|m\s*o\s*c\s*h\s*a):/ig.test(value)) {

                return '';

            }

        }

    },

    "onIgnoreTag": function(tag, html, options) {

        return AntiXSS_noTag(html);

    }

};

    

    

    

</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值