This file is indexed.

/usr/share/pyshared/zope/security/meta.zcml is in python-zope.security 3.8.3-2ubuntu1.

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
<configure
    xmlns="http://namespaces.zope.org/zope"
    xmlns:meta="http://namespaces.zope.org/meta">

  <meta:directive
      namespace="http://namespaces.zope.org/zope"
      name="permission"
      schema=".zcml.IPermissionDirective"
      handler=".zcml.permission" />

  <meta:directive
      name="securityPolicy"
      namespace="http://namespaces.zope.org/zope"
      schema=".zcml.ISecurityPolicyDirective"
      handler=".zcml.securityPolicy" 
      />

  <meta:directive
      name="redefinePermission"
      namespace="http://namespaces.zope.org/meta"
      schema=".zcml.IRedefinePermission"
      handler=".zcml.redefinePermission" />

  <meta:directives namespace="http://namespaces.zope.org/zope">

    <meta:complexDirective
        name="class"
        schema=".metadirectives.IClassDirective"
        handler=".metaconfigure.ClassDirective"
        >

      <meta:subdirective
          name="implements"
          schema=".metadirectives.IImplementsSubdirective"
          />

      <meta:subdirective
          name="require"
          schema=".metadirectives.IRequireSubdirective"
          />

      <meta:subdirective
          name="allow"
          schema=".metadirectives.IAllowSubdirective"
          />

      <meta:subdirective
          name="factory"
          schema=".metadirectives.IFactorySubdirective"
          />

    </meta:complexDirective>
  </meta:directives>

  <meta:groupingDirective
      name="module"
      namespace="http://namespaces.zope.org/zope"
      schema=".metadirectives.IModule"
      handler="zope.configuration.config.GroupingContextDecorator" />

  <meta:directive
      name="allow"
      namespace="http://namespaces.zope.org/zope"
      schema=".metadirectives.IAllow"
      handler=".metaconfigure.allow" />

  <meta:directive
      name="require"
      namespace="http://namespaces.zope.org/zope"
      schema=".metadirectives.IRequire"
      handler=".metaconfigure.require" />

</configure>