This file is indexed.

/usr/share/octopussy/search_templates.asp 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
 9
10
11
12
13
14
15
16
17
18
19
<WebUI:PageTop title="Search Templates" help="#search_templates" />
<%
my $action = $Request->QueryString("action");
my $user = $Request->QueryString("user");
$user = (($user =~ /^[a-z][a-z0-9_\.-]*$/i) ? $user : undef);
my $template = $Request->QueryString("template");
$template = (Octopussy::Search_Template::Valid_Name($template) 
	? $template : undef);
my $sort = $Request->QueryString("search_templates_table_sort");
if (NOT_NULL($action) && ($action eq "remove") 
	&& ($Session->{AAT_ROLE} =~ /(admin|rw)/i))
{
	Octopussy::Search_Template::Remove($user, $template);	
	$Session->{template} = undef;
}
%>
<AAT:Inc file="octo_search_templates_list" 
	url="./search_templates.asp" sort="$sort" />
<WebUI:PageBottom />