This file is indexed.

/usr/share/octopussy/submit.asp 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
<WebUI:PageTop title="Bug Report" />
<%
my $f = $Request->Form();
my $email = Octopussy::Info::Email();

if (NOT_NULL($f->{file}))
{
	AAT::SMTP::Send_Message("Octopussy", { from => $f->{from}, 
    subject => AAT::Translation("_MSG_THIS_IS_MY_NEW"), body => $f->{comment}, 
    file => $f->{file}, dests => [ $email ] });
	%><div align="center"><AAT:Label value="_MSG_MAIL_SENT_TO_SUPPORT" /></div><%
}
%>
<AAT:Inc file="octo_submit_to_devel" />
<WebUI:PageBottom />