This file is indexed.

/usr/lib/python2.7/dist-packages/bleach-1.4.2.egg-info/PKG-INFO is in python-bleach 1.4.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
Metadata-Version: 1.1
Name: bleach
Version: 1.4.2
Summary: An easy whitelist-based HTML-sanitizing tool.
Home-page: http://github.com/jsocol/bleach
Author: James Socol
Author-email: me@jamessocol.com
License: Apache Software License
Description: ======
        Bleach
        ======
        
        .. image:: https://travis-ci.org/jsocol/bleach.png?branch=master
           :target: https://travis-ci.org/jsocol/bleach
        
        .. image:: https://badge.fury.io/py/Bleach.svg
           :target: http://badge.fury.io/py/Bleach
        
        Bleach is an HTML sanitizing library that escapes or strips markup and
        attributes based on a white list. 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`_.
        
        
        Reporting Security Issues
        =========================
        
        If you believe you have found an exploit in a patched version of Bleach,
        master or the latest released version on PyPI, **please do not post it
        in a GitHub issue**. Please contact me privately, at
        `me+bleach@jamessocol.com <mailto:me+bleach@jamessocol.com>`.
        
        
        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
        
        *NB*: Bleach always returns a ``unicode`` object, whether you give it a
        bytestring or a ``unicode`` object, but Bleach does not attempt to detect
        incoming character encodings, and will assume UTF-8. If you are using a
        different character encoding, you should convert from a bytestring to
        ``unicode`` before passing the text to Bleach.
        
        
        Installation
        ------------
        
        Bleach is available on PyPI_, so you can install it with ``pip``::
        
            $ pip install bleach
        
        Or with ``easy_install``::
        
            $ easy_install bleach
        
        Or by cloning the repo from GitHub_::
        
            $ git clone git://github.com/jsocol/bleach.git
        
        Then install it by running::
        
            $ python setup.py install
        
        
        .. _html5lib: https://github.com/html5lib/html5lib-python
        .. _GitHub: https://github.com/jsocol/bleach
        .. _ReadTheDocs: http://bleach.readthedocs.org/
        .. _PyPI: http://pypi.python.org/pypi/bleach
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules