This file is indexed.

/usr/lib/python2.7/dist-packages/saml2/entity_category/at_egov_pvp2.py is in python-pysaml2 3.0.0-5.

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
__author__ = 'rhoerbe'  #2013-09-05
# Entity Categories specifying the PVP eGov Token as of "PVP2-Allgemein V2.1.0", http://www.ref.gv.at/


EGOVTOKEN = ["PVP-VERSION",
             "PVP-PRINCIPAL-NAME",
             "PVP-GIVENNAME",
             "PVP-BIRTHDATE",
             "PVP-USERID",
             "PVP-GID",
             "PVP-BPK",
             "PVP-MAIL",
             "PVP-TEL",
             "PVP-PARTICIPANT-ID",
             "PVP-PARTICIPANT-OKZ",
             "PVP-OU-OKZ",
             "PVP-OU",
             "PVP-OU-GV-OU-ID",
             "PVP-FUNCTION",
             "PVP-ROLES",
]


CHARGEATTR = ["PVP-INVOICE-RECPT-ID",
              "PVP-COST-CENTER-ID",
              "PVP-CHARGE-CODE",
]

# all eGov Token attributes except (1) transaction charging and (2) chaining
PVP2 = "http://www.ref.gv.at/ns/names/agiz/pvp/egovtoken"
# transaction charging extension
PVP2CHARGE = "http://www.ref.gv.at/ns/names/agiz/pvp/egovtoken-charge"

RELEASE = {
    PVP2: EGOVTOKEN,
    PVP2CHARGE: CHARGEATTR,
}