If I HTML encode any data entered by website users when I redisplay it, will this prevent CSS vulnerabilities?
Also, is there a tool/product available that will sanitize my user input for me, so that I don't have to write my own routines.
|
1
|
If I HTML encode any data entered by website users when I redisplay it, will this prevent CSS vulnerabilities? Also, is there a tool/product available that will sanitize my user input for me, so that I don't have to write my own routines. |
||||
|
|
|
Removed for irrelevance |
||
|
|
|
|
There are various subtleties to this question, although the answer in general is yes.
|
||
|
|
|
|
The answer is no, encoding is not enought. The best protection for XSS is a combination of "whitelist" validation of all incoming data and appropriate encoding of all output data. Validation allows the detection of attacks, and encoding prevents any successful script injection from running in the browser. If you are using .NET you can check this library http://msdn.microsoft.com/en-us/library/aa973813.aspx You can check also some Cheat sheets to test your protections: http://ha.ckers.org/xss.html Regards, Victor |
||
|
|
|
|
encoding your HTML is a start... it does not protect from all XSS attacks. If you use PHP, here is a good function you can use in your sites: Kallahar's RemoveXSS() function If you don't use PHP, at least the code is well commented, explaining the purpose of each section, and could then be adapted to another programming language. |
||||
|
|
|
HtmlEncoding input gets you a good portion of the way by not allowing the HTML to render to the page. Depending on your language items should exist there to sanitize the data. In .NET you can use Server.HtmlEncode(txtInput.Text) to input data from a textbox named txtInput. As others have mentioned more items are needed to be truly protected. |
||||
|