Skip to content

Commit 9c92272

Browse files
committed
publish: v1.0.15
1 parent ae15483 commit 9c92272

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v1.0.15 (2024-03-03)
4+
5+
- [feat: add <kbd> to default whitelist](https://github.com/leizongmin/js-xss/pull/279) by @rayrny
6+
- [feat: single-quoted attribute value syntax support](https://github.com/leizongmin/js-xss/pull/287) by @mdk000
7+
38
## v1.0.14 (2022-08-16)
49

510
- [fix: problem with not closed tag](https://github.com/leizongmin/js-xss/pull/262) by @slawiko

dist/xss.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ function getDefaultWhiteList() {
5858
header: [],
5959
hr: [],
6060
i: [],
61-
img: ["src", "alt", "title", "width", "height"],
61+
img: ["src", "alt", "title", "width", "height", "loading"],
6262
ins: ["datetime"],
63+
kbd: [],
6364
li: [],
6465
mark: [],
6566
nav: [],
@@ -456,6 +457,7 @@ exports.onIgnoreTagStripAll = onIgnoreTagStripAll;
456457
exports.StripTagBody = StripTagBody;
457458
exports.stripCommentTag = stripCommentTag;
458459
exports.stripBlankChar = stripBlankChar;
460+
exports.attributeWrapSign = '"';
459461
exports.cssFilter = defaultCSSFilter;
460462
exports.getDefaultCSSWhiteList = getDefaultCSSWhiteList;
461463

@@ -910,6 +912,8 @@ function FilterXSS(options) {
910912
options.whiteList = DEFAULT.whiteList;
911913
}
912914

915+
this.attributeWrapSign = options.singleQuotedAttributeValue === true ? "'" : DEFAULT.attributeWrapSign;
916+
913917
options.onTag = options.onTag || DEFAULT.onTag;
914918
options.onTagAttr = options.onTagAttr || DEFAULT.onTagAttr;
915919
options.onIgnoreTag = options.onIgnoreTag || DEFAULT.onIgnoreTag;
@@ -947,6 +951,7 @@ FilterXSS.prototype.process = function (html) {
947951
var onIgnoreTagAttr = options.onIgnoreTagAttr;
948952
var safeAttrValue = options.safeAttrValue;
949953
var escapeHtml = options.escapeHtml;
954+
var attributeWrapSign = me.attributeWrapSign;
950955
var cssFilter = me.cssFilter;
951956

952957
// remove invisible characters
@@ -1000,7 +1005,7 @@ FilterXSS.prototype.process = function (html) {
10001005
// call `safeAttrValue()`
10011006
value = safeAttrValue(tag, name, value, cssFilter);
10021007
if (value) {
1003-
return name + '="' + value + '"';
1008+
return name + '=' + attributeWrapSign + value + attributeWrapSign;
10041009
} else {
10051010
return name;
10061011
}

0 commit comments

Comments
 (0)