1
vote
Will HTML Encoding prevent all kinds of XSS attacks?
No, just encoding common HTML tokens DOES NOT completely protect your site from XSS attacks. See, for example, this XSS vulnerability found in google.com:
…
1
vote
XSS Blacklist - Is anyone aware of a reasonable one?
Not sure if you're using PHP, but if so you should look at HTMLPurifer. It's extremely simple to use; just add a call to the purify() method wh …
