0
votes
2answers
123 views
Simple HTML sanitizer in Javascript
I'm looking for a simple HTML santizer written in JavaScript. It doesn't need to be 100% XSS secure.
I'm implementing Markdown and the WMD Markdown editor (The SO master branch from github) on my …
1
vote
4answers
598 views
Sanitize/Rewrite HTML on the Client Side
I need to display external resources loaded via cross domain requests and make sure to only display "save" content.
Could use Prototype's String#stripScripts to remove script blocks. But handlers …
5
votes
6answers
563 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 …
7
votes
5answers
1k views
How to use C# to sanitize input on an html page?
Is there a library or acceptable method for sanitizing the input to an html page?
In this case I have a form with just a name, phone number, and email address.
Code must be C#.
For example:
…
