This file is indexed.

/usr/share/openguides/templates/delete_confirm.tt is in openguides 0.81-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
[% IF delete_version %]
  [% INCLUDE header.tt page_title = "Confirm delete for version $delete_version of $node_name - $site_name" %]
[% ELSE %]
  [% INCLUDE header.tt page_title = "Confirm delete for $node_name - $site_name" %]
[% END %]
[% INCLUDE banner.tt %]
<div id="content">
[% INCLUDE navbar.tt %]
<div id="maincontent">

<h1>Confirm Deletion</h1>
<p>
[% IF delete_version %]
  Are you sure you want to delete version [% delete_version %] of
  <span class="node_name">[% node_name %]</span>?  This will completely
  erase this version
  and you will not be able to get it back.  If all versions are erased
  then the page will cease to exist.
[% ELSE %]
  Are you sure you want to delete
  <span class="node_name">[% node_name %]</span>?  This will
  completely erase this page and all its history.
[% END %]
If so, please enter the admin
password. If not, you can <a href="[% cgi_url %]?[% node_param %]">go back to the
page</a>.
</p>
<form action="[% cgi_url %]" method="post">
  <input type="hidden" name="action" value="delete" />
  <input type="hidden" name="id" value="[% node_name %]" />
  <input type="hidden" name="version" value="[% delete_version %]" />
  <strong>Password:</strong>
  <input type="password" name="password" />
  <input type="submit" value="Delete" />
</form>

</div>
[% INCLUDE footer.tt %]