/usr/share/aat/INC/AAT_Logo.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 | <%
my %arg = @_;
my $logo = undef;
foreach my $e (AAT::List::Items($arg{list}))
{ $logo = $e->{logo} if ($arg{name} =~ /^$e->{value}$/); }
if (defined $logo)
{
$Response->Include("AAT/INC/AAT_Picture.inc", file => "AAT/IMG/${logo}.png",
width => $arg{width}, height => $arg{height},
tooltip => $arg{tooltip}, link => $arg{link}, link_new => $arg{link_new},
popup_link => $arg{popup_link}, close_popup_link => $arg{close_popup_link},
alt => $arg{alt});
}
%>
|