This file is indexed.

/usr/share/aat/INC/AAT_Message.inc is in octopussy 1.0.6-0ubuntu1.

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
<%
my %arg = @_;
my $button = ($arg{level} == 2 ? "msg_critical" 
	: ($arg{level} == 1 ? "msg_warning" 
	: ($arg{level} == -1 ? "info" : "msg_ok")));
my $color = ($arg{level} == 2 ? "red" 
	: ($arg{level} == 1 ? "orange" 
	: ($arg{level} == -1 ? "blue" : "green")));
%>
<table>
<tr valign="middle">
<td><AAT:Button name="$button" width="32" height="32" /></td>
<td>
<%if (NOT_NULL($arg{link}))
{%><a href="<%= $arg{link} %>"><%}%>
<AAT:Label value="$arg{msg}" color="$color" />
<%if (NOT_NULL($arg{link}))
{%></a><%}%>
</td>
</tr>
</table>