This file is indexed.

/usr/share/aat/INC/AAT_BoxTop.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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<%
my %arg = @_;
my $align = (defined $arg{align} ? 
	(($arg{align} =~ /^C/i) ? "center" 
		: (($arg{align} =~ /^R/i) ? "right" : $arg{align} )) : "left");
my $w = $arg{width};
my $bicolor = (defined $arg{bicolor} ? 1 : 0);
my $space = (NOT_NULL($arg{cellspacing}) ? $arg{cellspacing} : 0);
my $padd = (NOT_NULL($arg{cellpadding}) ? $arg{cellpadding} : 2);
%>
<!-- BoxTop -->
<div align="<%= $align %>">
<table cellspacing="0" cellpadding="0"<%= (defined $w ? " width=$w" : "") %>>
<tr>
<td class="box-top-left"></td>
<td class="boxtop"></td>
<td class="box-top-right"></td>
</tr>
<%
if ((defined $arg{icon}) || (defined $arg{title}))
{%>
	<tr><td class="box-left"></td>
	<td class="box">
	<div align="center" class="box">
	<table cellspacing="0" cellpadding="2">
	<tr>
		<td class="box"><AAT:IMG name="$arg{icon}" width="32" height="32" /></td>
		<td class="box"><AAT:Label value="$arg{title}" style="B" size="+1" /></td>
	</tr>
	</table>
	</div>
	</td>
	<td class="box-right"></td>
	</tr>
	<tr><td class="box-left"></td>
	<td class="box"><div class="box"><hr></div></td><td class="box-right"></td></tr><%
}%>
<tr>
<td class="box-left"></td>
<td class="box">
<table cellspacing="<%= $space %>" cellpadding="<%= $padd %>" width="100%">