The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
37 views

When modifying SimpleHtmlSanitizer.java, how to deal with <a href=> (Gwt)?

You know that SimpleHtmlSanitizer.java only accepts the following markup ("b", "em", "i", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "ul", "ol", "li"). It is good but I want "u", "sub", "a href=" & ...
0
votes
0answers
21 views

AjaxControlToolkit.Sanitizer is not working with HtmlAgilityPack 1.4.6

I am using HtmlAgilityPackSanitizerProvider in my asp.net 4.5 website application. I want to use latest HtmlAgilityPack 1.4.6 but the asp.net ajax control toolkit SanitizerProviders giving me error ...
0
votes
2answers
58 views

Clang Address Sanitizer on OSX

I would like to use clang address sanitizer on OSX Mountain Lion, because Valgrind have problems with memory check on this platform. But when I had the -fsanitize=address during the compilation time ...
0
votes
0answers
46 views

EnableSanitization removes all of the formatting

I am using HtmlEditorExtender latest version http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/HTMLEditorExtender/HTMLEditorExtender.aspx I also enabled Sanitization Here my webconfig ...
0
votes
0answers
441 views

Setting a SanitizerProvider

In my WebSite I'm trying to use an AjaxControlToolkit's HTMLEditorExtender but I'm not able to set a SanitizerProvider for that. After a large research, I've installed AntiXSS and HtmlAgilityPack ...
0
votes
1answer
255 views

Phone number sanitizer for intent.ACTION_CALL

I have the following onClickListener(): phonereserveListener = new OnClickListener() { @Override public void onClick(View v) { if (phone!=null){ String url = ...
0
votes
0answers
262 views

customizing the Antisamy policy xml to allow more html and grails tags

I am using the sanitizer plugin in grails and it internally uses the antisamy policy xml to apply sanitization rules to ui input. The policy xml I have selected is antisamy-myspace.xml which filters ...
3
votes
2answers
276 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 ...
0
votes
1answer
484 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). ...
8
votes
2answers
3k 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 ...
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? ...
37
votes
9answers
13k views

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.
7
votes
3answers
4k 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 ...