Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
7answers
7k views

Python HTML sanitizer / scrubber / filter

Does anyone have experience using a Python HTML sanitizer / scrubber / filter? I'm looking for a module that will remove any HTML tags from a string that are not found in a whitelist. Of course I've ...
8
votes
2answers
1k views

How do I strip bad chars from a string in JS?

My JS saves some string data to JSON using "stringify()", but observing the outputted JSON string I see a lot of strange chars (out of keyspace), such as NULLs and other bad chars. Now I don't have a ...
5
votes
3answers
1k views

HTML Sanitizer for .NET

I'm starting a project that will be public facing using asp.net mvc. I know there are about a billion php, python, and ruby html sanitizers out there, but does anyone have some pointers to anything ...
3
votes
2answers
103 views

Is it necessary to add missing closing tags as part of sanitizing the HTML to prevent XSS attacks?

I'm using the Sanitize gem to disallow HTML code that could be used for an XSS attack. As a side effect, the HTML also gets cleaned up. Missing closing tags get added. This would normally be fine but ...
2
votes
9answers
2k views

PHP sandbox/sanitize code passed to create_function

I am using create_function to run some user-code at server end. I am looking for any of these two: Is there a way to sanitize the code passed to it to prevent something harmful from executing? ...
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). ...