mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
Standards compliant HTML filter written in PHP.
http://htmlpurifier.org
3bdc031224
The %HTML.Forms directive enables Forms module regardless of the %HTML.Trusted value. This adds support for form elements without enabling other unsafe modules, such as Scripts, Iframe or Object. To achieve the same effect without this directive one has to explicitly list all enabled modules in %HTML.AllowedModules, and any not listed will be removed. This however is not very convenient, as the allowed modules may vary between doctypes. Resolves #213. |
||
---|---|---|
art | ||
benchmarks | ||
configdoc | ||
docs | ||
extras | ||
library | ||
maintenance | ||
plugins | ||
smoketests | ||
tests | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
composer.json | ||
CREDITS | ||
Doxyfile | ||
INSTALL | ||
INSTALL.fr.utf8 | ||
LICENSE | ||
NEWS | ||
package.php | ||
phpdoc.ini | ||
README.md | ||
test-settings.sample.php | ||
test-settings.travis.php | ||
TODO | ||
update-for-release | ||
VERSION | ||
WHATSNEW | ||
WYSIWYG |
HTML Purifier
HTML Purifier is an HTML filtering solution that uses a unique combination of robust whitelists and aggressive parsing to ensure that not only are XSS attacks thwarted, but the resulting HTML is standards compliant.
HTML Purifier is oriented towards richly formatted documents from untrusted sources that require CSS and a full tag-set. This library can be configured to accept a more restrictive set of tags, but it won't be as efficient as more bare-bones parsers. It will, however, do the job right, which may be more important.
Places to go:
- See INSTALL for a quick installation guide
- See docs/ for developer-oriented documentation, code examples and an in-depth installation guide.
- See WYSIWYG for information on editors like TinyMCE and FCKeditor
HTML Purifier can be found on the web at: http://htmlpurifier.org/
Installation
Package available on Composer.
If you're using Composer to manage dependencies, you can use
$ composer require ezyang/htmlpurifier