Tagged Questions
8
votes
6answers
2k views
Best way to handle security and avoid XSS with user entered URLs
We have a high security application and we want to allow users to enter URLs that other users will see.
This introduces a high risk of XSS hacks - a user could potentially enter javascript that ...
3
votes
4answers
1k views
Sanitize HTML before storing in the DB or before rendering? (AntiXSS library in ASP.NET)
I have an editor that lets users add HTML that is stored in the database and rendered on a web page. Since this is untrusted input, I plan to use ...
1
vote
1answer
333 views
Sanitizing input for display in view when using simple_format
I'm trying to figure out the right way to display comments such that newlines and links are displayed. I know that usually, you should display user-inputs only when escaping html with h(). That of ...