Bleach is an allowed-list-based HTML sanitizing library that escapes or strips markup and attributes
Перейти к файлу
Will Kahn-Greene 4bc1bff368 Update dev requirements 2024-07-16 14:02:06 -04:00
.github Bump actions/cache from 3 to 4 2024-02-01 07:37:55 -05:00
bleach Update for v6.1.0 release 2023-10-06 15:28:36 -04:00
docs Fix building on readthedocs 2023-01-23 12:35:29 -05:00
scripts Remove scripts/run_tests.sh since we don't use it anymore 2022-12-08 16:22:28 -05:00
tests Update dev dependencies 2024-04-15 11:10:06 -04:00
tests_website Fix linting issues 2023-10-03 09:41:36 -04:00
.gitignore Support pytest5 syntax for tests 2019-12-03 13:38:37 -05:00
.readthedocs.yaml Fix Sphinx requirement and update it 2023-10-05 17:39:34 -04:00
CHANGES Fix spelling error 2023-10-06 15:28:36 -04:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file 2019-03-27 20:35:42 -07:00
CONTRIBUTING.rst Make it clearer security bugs go through a different channel 2022-04-07 11:32:32 -04:00
CONTRIBUTORS Update CHANGES and CONTRIBUTORS 2022-02-18 10:38:34 -05:00
LICENSE Update documentation 2017-03-03 21:33:15 -05:00
MANIFEST.in Remove docs/requirements.txt from manifest 2023-10-06 12:18:45 -04:00
Makefile Update dev dependencies 2024-04-15 11:10:06 -04:00
README.rst Fix deprecation note so GitHub renders it better 2023-01-23 12:22:26 -05:00
SECURITY.md update dev docs and SECURITY.md 2021-08-25 14:51:11 -04:00
requirements-dev.txt Update dev requirements 2024-07-16 14:02:06 -04:00
requirements-flake8.txt Update dev requirements 2022-12-07 21:36:37 -05:00
setup.cfg Add warning when css_sanitizer is not set, but style is allowed (#676) 2022-12-23 14:20:58 -05:00
setup.py Update cap for tinycss2 to <1.3 (#702) 2023-10-06 12:18:45 -04:00
tox.ini Add support for python 3.12 (#710) 2023-10-03 09:34:58 -04:00

README.rst

======
Bleach
======

.. image:: https://github.com/mozilla/bleach/workflows/Test/badge.svg
   :target: https://github.com/mozilla/bleach/actions?query=workflow%3ATest

.. image:: https://github.com/mozilla/bleach/workflows/Lint/badge.svg
   :target: https://github.com/mozilla/bleach/actions?query=workflow%3ALint

.. image:: https://badge.fury.io/py/bleach.svg
   :target: http://badge.fury.io/py/bleach

**NOTE: 2023-01-23: Bleach is deprecated.** See issue:
`<https://github.com/mozilla/bleach/issues/698>`__

Bleach is an allowed-list-based HTML sanitizing library that escapes or strips
markup and attributes.

Bleach can also linkify text safely, applying filters that Django's ``urlize``
filter cannot, and optionally setting ``rel`` attributes, even on links already
in the text.

Bleach is intended for sanitizing text from *untrusted* sources. If you find
yourself jumping through hoops to allow your site administrators to do lots of
things, you're probably outside the use cases. Either trust those users, or
don't.

Because it relies on html5lib_, Bleach is as good as modern browsers at dealing
with weird, quirky HTML fragments. And *any* of Bleach's methods will fix
unbalanced or mis-nested tags.

The version on GitHub_ is the most up-to-date and contains the latest bug
fixes. You can find full documentation on `ReadTheDocs`_.

:Code:           https://github.com/mozilla/bleach
:Documentation:  https://bleach.readthedocs.io/
:Issue tracker:  https://github.com/mozilla/bleach/issues
:License:        Apache License v2; see LICENSE file


Reporting Bugs
==============

For regular bugs, please report them `in our issue tracker
<https://github.com/mozilla/bleach/issues>`_.

If you believe that you've found a security vulnerability, please `file a secure
bug report in our bug tracker
<https://bugzilla.mozilla.org/enter_bug.cgi?assigned_to=nobody%40mozilla.org&product=Webtools&component=Bleach-security&groups=webtools-security>`_
or send an email to *security AT mozilla DOT org*.

For more information on security-related bug disclosure and the PGP key to use
for sending encrypted mail or to verify responses received from that address,
please read our wiki page at
`<https://www.mozilla.org/en-US/security/#For_Developers>`_.


Security
========

Bleach is a security-focused library.

We have a responsible security vulnerability reporting process. Please use
that if you're reporting a security issue.

Security issues are fixed in private. After we land such a fix, we'll do a
release.

For every release, we mark security issues we've fixed in the ``CHANGES`` in
the **Security issues** section. We include any relevant CVE links.


Installing Bleach
=================

Bleach is available on PyPI_, so you can install it with ``pip``::

    $ pip install bleach


Upgrading Bleach
================

.. warning::

   Before doing any upgrades, read through `Bleach Changes
   <https://bleach.readthedocs.io/en/latest/changes.html>`_ for backwards
   incompatible changes, newer versions, etc.

   Bleach follows `semver 2`_ versioning. Vendored libraries will not
   be changed in patch releases.


Basic use
=========

The simplest way to use Bleach is:

.. code-block:: python

    >>> import bleach

    >>> bleach.clean('an <script>evil()</script> example')
    u'an &lt;script&gt;evil()&lt;/script&gt; example'

    >>> bleach.linkify('an http://example.com url')
    u'an <a href="http://example.com" rel="nofollow">http://example.com</a> url'


Code of Conduct
===============

This project and repository is governed by Mozilla's code of conduct and
etiquette guidelines. For more details please see the `CODE_OF_CONDUCT.md
</CODE_OF_CONDUCT.md>`_


.. _html5lib: https://github.com/html5lib/html5lib-python
.. _GitHub: https://github.com/mozilla/bleach
.. _ReadTheDocs: https://bleach.readthedocs.io/
.. _PyPI: https://pypi.org/project/bleach/
.. _semver 2: https://semver.org/