This file is indexed.

/usr/share/weblogin/generic/templates/logout.tmpl is in webauth-weblogin 4.0.2-1.

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <http-equiv="pragma" content="no-cache">
    <title>WebAuth Logout</title>
  </head>

  [% IF notdefined %]
<!--
This is the template for WebAuth logout.  It is displayed whenever the
logout.fcgi script is executed.  logout.fcgi deletes the single sign-on
cookie.  Variables used:

cookies_flag           : found a single sign-on cookie to delete
-->
  [% END %]

  <body>
    <h1 align="center">WebAuth Logout</h1>
    <div class="loginbox" align="center">
      <table border="1" width="70%">
        <tr>
          <td><img alt="Logout" src="/images/logout.png"
                   width="160" height="160"/></td>
          <td>
            <div class="logouttext" align="center">
              <p><strong>You have chosen to remove your WebAuth single
              sign-on cookie.</strong></p>

              <p><strong>Results:</strong>
              [% IF cookies_flag %]
                Single sign-on cookie has been deleted.
              [% ELSE %]
                No single sign-on cookies found to delete.
              [% END %]
              </p>
            </div>
          </td>
        </tr>
      </table>
    </div>
  </body>
</html>