There is a Node.js project that sanitizes data and there is an OWASP library for JavaScript that handles sanitization to prevent XSS.
I have been benchmarking these libraries, and they are pretty intensive and maybe an overkill, my application does not need any dynamic HTML (submitted by users, bbtags or what ever, not required at all) so why not do it like this:
- Disable "
<
" and ">
" characters, don't replace them or anything, just disable them, if the user submits these, give them a warning that these are disabled (client- and server-side validation)
&
=> &
"
=> "
'
=> '
/
=> /
- Encode submitted URLs (GET parameters etc.)
- DOM based XSS is covered since my application uses HTML5 PushState and the backend is fully separated from the frontend.
Would this be enough to protect myself, as I said, my application does not require any HTML submitted by users, so I don't need the <
and >
tags at all.
Thanks for all the feedback, this is what I use right now:
var pattern = /<(.*)>/;
function hasHtmlTags(string) {
return pattern.test(string);
};
if (hasHtmlTags(userData)) {
// Do something?
} else {
// Create entity.
}
So users can still use their emoticons :< and such, and the function only gets triggered if a combination of < and > is found. So no expensive regular expressions and such, just disable < and > in combination and we should be fine.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…