Tagged Questions
14
votes
3answers
455 views
What can I use to sanitize received HTML while retaining basic formatting?
This is a common problem, I'm hoping it's been thoroughly solved for me.
In a system I'm doing for a client, we want to accept HTML from untrusted sources (HTML-formatted email and also HTML files), ...
12
votes
4answers
5k 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 ...
3
votes
3answers
580 views
Django, automatic HTML “sanitizing” when putting HTML to template, how to stop it?
I'm kind of confused by this because it seems that Django templates have optional HTML filters but this seems to be happening automatically.. I am making this demo app where the user will do an action ...
1
vote
2answers
3k 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
3answers
516 views
How can I make HTML safe for web browser with python?
How can I make HTML from email safe to display in web browser with python?
Any external references shouldn't be followed when displayed. In other words, all displayed content should come from the ...
0
votes
3answers
363 views
Automatically adding width and height attributes to <img> tags with a PHP function
What I want is a function I can run on user input that will intelligently find and add the width and height attributes to any <img> tag in a blob of HTML so as to avoid page-reflowing issues ...