This file is indexed.

/usr/share/zentyal/templates/ca/forceRevoke.mas is in zentyal-ca 2.3.6+quantal1.

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
<%args>
  $metaDataCert
  $isCACert     => 1
  $reason       => "unknown"
  $caPassphrase => undef
</%args>
<%init>
  use EBox::Gettext;
</%init>
<h3>
<%perl>
if ( $isCACert ) {
  print __("Revoking CA certificate");
} else {
  print __("Revoking certificate");
}
</%perl>
</h3>
  <div class="warning">
%   if ( $isCACert ) {
      <% __x('This revokation can affect the functionality from other modules, please confirm you are very sure to revoke the whole certification authority from {on} and leave the service(s) unstable or disabled', on => $metaDataCert->{dn}->attribute('organizationName')) %>
%   }
%   else {
      <% __x("The certificate whose common name is {cn} you tried to revoke is being used by some module, please confirm you are sure to revoke and leave the service(s) unstable or disabled", cn => $metaDataCert->{dn}->attribute('commonName')) %>
%   }
  </div>

  <p>
    <form action="RevokeCertificate" method="post">
      <input type="hidden" name="commonName"
             value="<% $metaDataCert->{dn}->attribute('commonName') %>" />
      <input type="hidden" name="isCACert"
             value="<% $isCACert %>" />
      <input type="hidden" name="reason"
             value="<% $reason %>" /> 
% if ( defined ( $caPassphrase )) {
      <input type="hidden" name="caPassphrase"
             value="<% $caPassphrase %>" /> 
% }
      <input class="inputButton" type="submit"
             name="revokeForce"
	     value='<% __("Revoke") %>' />
      <input class="inputButton" type="submit"
             name="cancel"
	     value='<% __("Cancel") %>' />
    </form>
  </p>