Tagged Questions
HTML filtering library for PHP
40
votes
4answers
1k views
HTML filter that is HTML5 compliant
Is there an HTML filter like HTML Purifier that is HTML5 compliant?
plzsendtehcodez bounty
Recurring question, not sufficiently documented yet. None of the other HTML cleanup solutions for ...
9
votes
2answers
843 views
HTML Purifier - what to purify?
I am using HTML Purifier to protect my application from XSS attacks. Currently I am purifying content from WYSIWYG editors because that is the only place where users are allowed to use XHTML markup.
...
5
votes
2answers
1k views
How do I allow script, object, param, embed, and iframe tags in HTMLPurifier?
This is kind of a special combination of tags that I want to allow in HTMLPurifier, but can't seem to get the combination to work.
I can get script tags to work, but then embed tags get removed (I ...
4
votes
2answers
696 views
htmlpurifier with an html5 doctype
Is it possible to have htmlpurifier use the html5 doctype?
The documentation here states that you can change the doctype and encoding with the following:
<?php
require_once ...
4
votes
1answer
132 views
htmlpurifier, overpurification of third party source
UPDATE 2: http://htmlpurifier.org/phorum/read.php?3,5088,5113 Author has already identified the problem.
UPDATE: Issue appears to be exclusive to version 4.2.0. I have downgraded to 4.1.0 and it ...
3
votes
3answers
200 views
Webmail: HTML headers
HTML e-mails are a complex beast. Deciding what to send (as the sender) and what to display (as the recipient) is tricky and potentially dangerous.
On the recipient side of things, we have webmail ...
3
votes
2answers
172 views
HTMLPurifier vs Kses
What are the advantages / disadvantages of both?
Which of them would you use to filter comment that user a posting on a website?
3
votes
2answers
564 views
Is $this->escape() in the Zend view enough for xss
I do a lot of $this->escape() in the zend view. Is this enough to prevent XSS?
There's HTMLPurifier outside the Zend Framework. I wonder how zend's $this->escape() compares to HTMLPurifier.
3
votes
4answers
167 views
How to prevent malformed tags for XSS
I read a comment about malformed tags being used for XSS attacks. How am I supposed to sanitize against these. If I use a library like HTMLPurifier, does it take of this as part of its work? or is ...
3
votes
2answers
500 views
HTML Purifier: Converting <body> to <div>
Premise
I'd like to use HTML Purifier to transform <body> tags to <div> tags, to preserve inline styling on the <body> element, e.g. <body style="background:color#000000;">Hi ...
3
votes
3answers
887 views
HTML Purifier: Removing an element conditionally based on its attributes
As per the HTML Purifier smoketest, 'malformed' URIs are occasionally discarded to leave behind an attribute-less anchor tag, e.g.
<a ...
3
votes
3answers
566 views
� in my html after purify
I have a database the I am rebuilding the table structure was crap so I'm porting some of the data from one table to another. This data appears to have been copy-pasted from MSO product so as I'm ...
2
votes
1answer
50 views
What does HTML Purifier do that secure PHP programming can't?
I'm researching PHP security best practices and specifically the HTML Purifier library.
I like the idea of using a third-party library to help strengthen the security of my sites, but I'm confused ...
2
votes
1answer
36 views
htmlpurifier remove inline css
I am using htmlpurifier to clean up user content. I am trying to remove inline style attributes like
<div style="float:left">some text</div>
I want to remove the whole style attribute.
...
2
votes
1answer
57 views
PHPIDS configuration to allow html
I have scoured the https://phpids.org website, multiple forums, stackoverlow (of course :P) etc to find a way to allow posting html string from TinyMCE textarea integrated in my homegrown CMS. I tried ...
2
votes
2answers
122 views
Html purifier clears p tag
For some reason html purifier clears p tags. It happens when p is inside of span tags.
For example:
<span class=\"large gray content_text article_text\">
<p>111111</p>
...
2
votes
1answer
106 views
Allow only specific classes within the class attribute in HTML purifier
I know that I can set the allowed tags and eventually attributes in HTML Purifier with something like:
$cfg->set('HTML.Allowed', 'a[href|title],'b','em','i','strike');
but how can I also disallow ...
2
votes
1answer
80 views
Request for IRC URI Scheme for HTML Purifier 4.2.0
Can someone help me to establish using IRC URI Scheme for HTML Purifier 4.2.0? I can't seem to figure out how to configure or which files to modify so that purified html allows for irc:// links.
Is ...
2
votes
2answers
406 views
htmlpurifier custom attributes
How to allow custom (html5 data-*) attributes in HtmlPurifier?
Input:
<img src="/my.jpg" data-type="5" alt="" />
leads to an error:
Attribute 'data-type' in element 'img' not supported
...
2
votes
1answer
119 views
How to include HTMLPurifier on every page?
Okay right now I have too include the code below on every single page and every time I have too change the following piece of code every time I place it in a new web page. Is there a way I can include ...
2
votes
3answers
508 views
using htmlpurifier for input or output escaping/filtering
I am processing a user input from the public with a javascript WYSIWYG editor and I'm planning on using htmlpurifier to cleanse the text.
I thought it would be enough to use htmlpurifier on the ...
2
votes
4answers
420 views
Whitelist element with class of, using htmlpurifier
I want to only allow the span element only when it has a certain class in htmlpurifier
does anyone know how to do this, right now I have
...
2
votes
3answers
270 views
HTMLPurifier, check entire HTML document
I'm using HTMLPurifier to check for XSS in an entire HTML document. The problem is that it appears to strip out anyything that isn’t inside <body> tags. But, I want to keep everything, just look ...
2
votes
2answers
1k views
How to get   to behave properly using HTML Purifier?
I am using HTML Purifier in my PHP project and am having trouble getting it to work properly with user input.
I am having users enter in HTML using a WYSIWYG editor (TinyMCE), but whenever a user ...
1
vote
1answer
39 views
frameworks to protect xss
I've read the pages about xss in OWASP website, 1 2
But i am curious about a question.
Is there any situation where the use of a framework like html purifier or esapy are not possible ? Some type ...
1
vote
3answers
67 views
Do I still need to use htmlentities if I'm using HTMLPurifier?
I've been 'sprinkling'
htmlentities($user_input, ENT_QUOTES, 'UTF-8')
throughout my views, everywhere I echo data that a user had the chance to enter in my app.
This is very tedious and I'm ...
1
vote
1answer
117 views
HTML Purifier Filter Elements
I would like to make sure my HTML Purifier removes all elements other than these:
br, a, img, div, embed, object, u, em, ul, ol, li, strong, span
these elements will have many attributes.
What can ...
1
vote
1answer
40 views
HtmlPurifier and pre tag content
Does anyone know how should I configure HtmlPurifier to ignore content within <pre> tag?
Currently I have something like this:
require_once('HTMLPurifier.auto.php');
$config = ...
1
vote
2answers
81 views
do I need HTMLpurifier in Codeigniter?
I am developing a PHP application using Codeigniter framework and it is time now for the security reviews.. I got many recommendations to use HTMLPurifier library if i want the best protection I can ...
1
vote
1answer
47 views
Is it possible to configure HtmlPurifer to strip tags that have an attribute with a specific value?
I am using HtmlPurifer to sanitize html input.
Here is my HtmlPurifer config:
$config = HTMLPurifier_Config::createDefault();
$config->set('Core.Encoding', 'UTF-8');
...
1
vote
3answers
81 views
Prevent spammer to sneak in URL & link in mail
I have a spammer that use my PHP e-mail contact form and write this in the mail message:
[url=http://qjtouvifclfk.com/]qjtouvifclfk[/url]
[link=http://gqmrjhtujkoe.com/]gqmrjhtujkoe[/link]
...
1
vote
1answer
107 views
Is having both mod_security and htmlpurifier an overkill?
We had htmlpurifier integrated into our LAMP based product earlier, but it was a bit slow. Recently, we have turned on mod_security. Both of these are part of the OWASP project (owasp used htmlpurifer ...
1
vote
6answers
123 views
Site hacked username, additional info and password changed question? [closed]
I was wondering what could of allowed a user to hack my site, they changed my username, personal info and password. Can someone give me some suggestions on what it could have been. I'm using PHP MySQL ...
1
vote
1answer
86 views
make HTMLPurifier omit double quotes around=“attributes”
This is not terribly important, but I want to find out if you can possibly have HTMLPurifier omit the double quotes around arguments. When it filters HTML it usually reformats it into XHTML syntax.
...
1
vote
1answer
106 views
Is it safe to turn urls into links?
I want to turn urls in the user comments, into links.
I don't have time to test bloated anti-xss libraries like HTML Purify, so I wouldn't be allowing any html tags.
I just want to make everything ...
1
vote
1answer
72 views
How do I allow the HTML form element and HTML5 elements and attributes when using HTMLPurifier?
what code do I need to add inorder to allow the form element and HTML5 when using htmlpurifier?
1
vote
1answer
147 views
HTMLPurifier: auto br
How i can get:
<p>first<br>p</p>
<p>second p</p>
from:
<p>first
p</p>
<p>second p</p>
using HTMLPurifier?
1
vote
3answers
420 views
PHP: Strip Wrapping Paragraph Tags
I need to write a PHP function which removes opening and closing paragraph tags from a string, but only if they are at the very beginning/end. So the strings:
"Simple Test"
"<p>Here</p>"
...
1
vote
3answers
354 views
HTMLPurifier Breaking Images
I'm trying to run HTMLPurifier on user input from a WYSIWYG (CK Editor) and the images are breaking.
Unfiltered Input:
<img alt="laugh" src="/lib/ckeditor/plugins/smiley/images/teeth_smile.gif" ...
1
vote
1answer
97 views
HTML Purifier Special Character Encodings Question. [UPDATED]
I was wondering how can I stop html purifier from turning my & signs to & and into & instead?
1
vote
1answer
295 views
How to remove “blank markup” with PHP - i.e. multiple nested elements with no text node
I've installed CKeditor on a client's site that allows them to enter some text using a WYSIYG editor. It is locked down for the most part, only allowing bold, italic, unordered lists, etc.
I also run ...
1
vote
3answers
168 views
advantages from htmlpurifier instead of regex filtering
We have recently implemented htmlpurifier in our web-based application. Earlier we used to have regexes to match commonly known XSS injections (script, img, etc. etc). We realized that this wasn't ...
1
vote
1answer
100 views
HTMLPurifier dies when the following code is run through it
Using the latest release of HTMLPurifier with default configs.
The following code will cause the oh-so-lovely blank white page in PHP. Am I missing something? Even if I set HTML.TidyLevel to light or ...
1
vote
2answers
330 views
Filter null byte in request
I am using htmlpurifier library for sanitizing my incoming parameters. But it is not filtering null bytes (for e.g. %00). Am I missing something or the library does not support it? Will I be required ...
1
vote
1answer
286 views
HTMLPurifier config error
I'm trying to set some configurations for HTMLPurifier, and everything works on my dev machine, but on test, it fails.
with the error Class 'HTMLPurifier_config' not found.
but if I remove config, ...
1
vote
1answer
428 views
clean html a string by element id using php
as you can see by the subject am looking for a tool for cleaning up a HTML string in php using a HTML id property, example:
According to the following PHP string I wish to clean the HTML erasing the ...
1
vote
2answers
105 views
Efficient way to handle multiple HTMLPurifier configs
I'm using HTMLPurifier in a current project and I'm not sure about the most efficient way to go about handling multiple configs. For the most part the only major thing changing is the allowed tags.
...
1
vote
2answers
270 views
1
vote
2answers
1k views
PHPUnit and autoloaders: Determining whether code is running in test-scope?
Premise
I know that writing code to act differently when a test is run is hilariously bad practise, but I may've actually come across a scenario in which it may be necessary.
Specifically, I'm ...
1
vote
2answers
330 views
PHP: How To Integrate HTML Purifier To Fileter User Submitted Data?
I have this script that collects data from users and I wanted to check their data for malicious code like XSS and SQL injections by using HTML Purifier http://htmlpurifier.org/ but how do I add it to ...