This file is indexed.

/usr/share/zentyal/templates/firewall/ajax/viewer/fwDecisionViewer.mas is in zentyal-firewall 2.3.3.

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
<%args>
$data
</%args>
%   if ( (defined ( $data->value())) and
%        ($data->value() eq 'accept')) {
		<img src="/data/images/allow-active.gif" 
			alt="<% $data->printableValue() %>"
			title="<% $data->printableValue() %>"/>
%   } elsif ($data->value() eq 'deny') {
		<img src="/data/images/deny-active.gif" 
			alt="<% $data->printableValue() %>"
			title="<% $data->printableValue() %>"/>
%   } elsif ($data->value() eq 'log') {
		<img src="/data/images/edit-table.gif" 
			alt="<% $data->printableValue() %>"
			title="<% $data->printableValue() %>"/>

%   }