Tagged Questions
The html-sanitizing tag has no wiki summary.
14
votes
3answers
428 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), ...
11
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 ...
10
votes
5answers
6k 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:
...
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
3answers
555 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 ...
3
votes
3answers
552 views
Rails Sanitize: Safety + Allowing Embeds
We're building a user generated content site where we want to allow users to be able to embed things like videos, slideshares, etc... Can anyone recommend a generally accepted list of tags / ...
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 ...
2
votes
1answer
90 views
Cleaning mixed type <script> tags
I'm cleaning HTML using cyberneko and xerces.
However , some $#@@!@@ websites still use BOTH
<script>...</script> and <script.../>
So what happens is this : given
...
1
vote
2answers
71 views
Is there a minimum-trust equivalent of the Web Protection Library (Anti-XSS)?
I am working on a project that requires some HTML sanitization. Normally, I would turn to the Microsoft Web Protection Library; however, in this case, I am developing an application running in minimal ...
1
vote
1answer
36 views
What bad things can a user do in a browser without the script tag?
I have an entry form where the user can type arbitrary HTML. What do I need to filter out besides script tags? Here's what I do:
userInput.replace(/<(script)/gi, "<$1");
but the sanitizer ...
1
vote
1answer
334 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 ...
1
vote
4answers
628 views
Remove HTML tags in AppEngine Python Env (equivalent to Ruby's Sanitize)
I am looking for a python module that will help me get rid of HTML tags but keep the text values. I tried BeautifulSoup before and I couldn't figure out how to do this simple task. I tried searching ...
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
507 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
0answers
20 views
Non UTF-8 chars in tweets, how to force them?
I have weird characters in my tweets and I've realised is because the tweets are not utf-8 encoded as my html page is.
I might be able to use a function (I've seen couple references) to force the ...
0
votes
3answers
72 views
Java REGEX <script> tag removing from URL [closed]
Possible Duplicate:
Remove JavaScript with Regex
How can i remove all content between <script.... and ... </script>?
If I write:
s = s.replaceAll("<script.+</script>", ...
0
votes
1answer
37 views
Unicode Replacement Characters in the PHP htmlspecialchars function
In the htmlspecialchars function, if you set the ENT_SUBSTITUTE flag, it is supposed to replace some invalid characters.
What characters are replaced? And what is the mapping between the invalid ...
0
votes
2answers
225 views
Rails HTML Sanitizing
I am trying to sanitize an HTML file and it isn't working correctly. I want to all be entirely plain text except for paragraph and line break tags. Here is my sanitization code (the dots signify ...
0
votes
1answer
69 views
The PHP HTMLPurifier library, but for Rails?
Anyone who's done anything much with PHP and receiving rich-text input from something like TinyMCE has (probably) used something like HTMLPurifier to keep the nasties out of the HTML you're ...
0
votes
1answer
170 views
Remove a bad tag completely with html5lib.sanitizer
I'm trying to use html5lib.sanitizer to clean user-input as suggested in the docs
The problem is I want to remove bad tags completely and not just escape them (which seems like a bad idea anyway).
...
0
votes
4answers
57 views
What is the Javascript Regexp for finding the attributes in a <span> tags?
I have a <div contenteditable="true> that I am trying to use to get text from users. I would use a simple <textarea>, but I need line-breaks and eventually lists and tables etc. I am ...
0
votes
1answer
354 views
How to escape javascript-generated html in Rails?
On one side of my page, I have a very simple email form. On the other side I have a preview of the proposed email. For example:
As the user completes the fields, I'd like to update the preview on ...
0
votes
1answer
111 views
Sanitizing title URLs in ExpressionEngine 1.6.x
I run a blog where the blog title is either an external link or an internal link to a longer piece similar to what you’ve seen on similar blogs. For some reason, ExpressionEngine (1.6.x) does nothing ...
0
votes
2answers
167 views
Cleaning an HTML string saving some tags and attributes
After I implemented my sanitize functions (according to requested specifics), my boss decided to change the accepted input. Now he wants to keep some specific tag and its attributes. I suggested to ...
0
votes
3answers
344 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 ...