Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
@BalusC - true. – ripper234 Aug 30 '10 at 20:10

2 Answers

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):

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.