This file is indexed.

/usr/share/pyshared/apache_openid/templates/post_redirect.html is in python-apache-openid 2.0.1-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
15
16
17
18
19
20
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
          "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <title>%(title)s</title>
    <script type="text/javascript">
      function autoSubmit() {
          var inputs = document.getElementsByTagName("input");
          for (var i = 0; i < inputs.length; i++) {
              inputs[i].style.visibility = "hidden";
          }

          document.getElementById("%(id)s").submit();
      }
    </script>
  </head>
  <body onload="autoSubmit()">
    %(form)s
  </body>
</html>