In order to fix this problem. you'll need to review the code for areas where the application accepts input from an untrusted source (user input, third party data...) and then displays that input back to the user. You're looking for cases where the input is not validated and the corresponding output is not properly escaped.
I suggest the following page as an excellent jump-off point for understanding XSS and there also you'll find further references to help you understand and prevent XSS in your applications:
http://www.owasp.org/index
Main Topics
Browse All Topics





by: iUsernamePosted on 2009-07-02 at 15:32:00ID: 24768386
XSS (cross site scripting) is a web application vulnerability, and to fix this vulnerability you simply need to VALIDATE THE INPUT.