This file is indexed.

/usr/share/pyshared/zope/app/container/browser/find.pt is in python-zope.app.container 3.9.2-0ubuntu1.

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
<html metal:use-macro="context/@@standard_macros/dialog"
    i18n:domain="zope">
<body>
<div metal:fill-slot="body" >

  <form action="@@find.html" method="get">
    <input type="text" name="ids" value="" /><br />
    <input type="submit" name="find_submit" value=" Find " 
           i18n:attributes="value find-button"/>
  </form>

  <table tal:condition="request/ids|nothing">
    <tr tal:repeat="item python:view.findByIds(request['ids'])">
      <td>
        <a href="" tal:attributes="href item/url" tal:content="item/id">id</a>
      </td>
    </tr>
  </table>

</div>
</body>
</html>