This file is indexed.

/usr/share/aat/INC/AAT_TextArea.inc is in octopussy 1.0.6-0ubuntu2.

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
<% 
my %arg = @_; 

my $options = "";
foreach my $k (keys %arg)
	{ $options .= " $k=\"$arg{$k}\""	if (($k ne "name") && ($k ne "data")); }
%>
<textarea name="<%= $arg{name} %>" <%= $options %>><% print $arg{data} %></textarea>