XSS Cross-site Scripting
Users submit executable code (javascript) into your system to be displayed to (and executed by) other users
- HTMLEncode user input data before presenting it
- Don't allow anything that can be rendered to be saved - if practical, no HTML in submissions.
- Validate forms on the server
example
Next