Comparing version
@@ -12,3 +12,3 @@ | ||
return String(value || '').replace(/["'&]/g, function (char) { | ||
return String(value || '').replace(/["'&<>]/g, function (char) { | ||
return toEscape[char]; | ||
@@ -15,0 +15,0 @@ }); |
var escape = require('./escape'), | ||
voidElements = ['area','base','br','col','embed','hr','img','input','keygen','link','meta','param','source','track','wbr']; | ||
voidElements = ['area','base','br','col','embed','hr','img','input','keygen','link','meta','param','source','track','wbr'], | ||
textOnlyElements = ['option', 'rp', 'textarea', 'title']; | ||
@@ -49,6 +50,12 @@ var Tag = module.exports = function Tag (name, attributes, content) { | ||
return (this.content) | ||
var content = (this.content) | ||
? this.content | ||
: ''; | ||
if (textOnlyElements.includes(this.name)) { | ||
content = escape(content); | ||
} | ||
return content; | ||
}; | ||
@@ -55,0 +62,0 @@ |
{ | ||
"name": "formist", | ||
"version": "0.2.0", | ||
"version": "0.3.0", | ||
"description": "A library to publish, consume and validate HTML5 forms.", | ||
@@ -36,2 +36,2 @@ "main": "index.js", | ||
} | ||
} | ||
} |
@@ -105,2 +105,9 @@ | ||
it('should escape content tags', function () { | ||
var tag = new Tag("option", {}, '" /><script>alert(\'xss\')</script><option name="'); | ||
expect(tag.render()).to.equal('<option>" /><script>alert('xss')</script><option name="</option>'); | ||
}); | ||
}); | ||
@@ -107,0 +114,0 @@ |
Sorry, the diff of this file is not supported yet
70004
9.17%35
2.94%1468
1.17%