I'm looking for a java library that can provide protection against XSS attacks. I'm writing a server, and would like to validate my user's input doesn't contain malicious javascript.
Which library would you recommend?
|
I'm looking for a java library that can provide protection against XSS attacks. I'm writing a server, and would like to validate my user's input doesn't contain malicious javascript. Which library would you recommend? |
|||||
|
|
You should use AntiSamy. (That's what I did) |
||||
|
|
|
If you want to accept HTML from the users, then AntiSamy or something like jsoup makes sense. However, if you just want a good set of escapers, you can use a library such as CSL: https://github.com/coverity/coverity-security-library We have a cheat sheet online that shows how to use it in many HTML contexts (aka HTML constructs): |
||||
|
|