This file is indexed.

/usr/lib/python2.7/dist-packages/saml2/entity_category/__init__.py is in python-pysaml2 4.0.2-0ubuntu3.

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
__author__ = 'rolandh'

ENTITYATTRIBUTES = "urn:oasis:names:tc:SAML:metadata:attribute&EntityAttributes"


def entity_categories(md):
    res = []
    if "extensions" in md:
        for elem in md["extensions"]["extension_elements"]:
            if elem["__class__"] == ENTITYATTRIBUTES:
                for attr in elem["attribute"]:
                    res.append(attr["text"])

    return res