This file is indexed.

/usr/share/debbugs/templates/en_US/cgi/pkgreport_options_include_exclude.tmpl is in debbugs-web 2.6.0.

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
<input type="hidden" name="_fo_concatenate_into_{$incexc}_fo_{$incexc}key_fo_{$incexc}value" value="1">
{ my $output = '';
  our $value_index = 0;
  our $key1 = '';
  our $key2 = '';
  for my $field (make_list($param{$incexc})) {
    ($key1,$key2) = $field =~ m/^([^:]+)\:(.+)/;
    next unless defined $key2;
    $output .= include('cgi/pkgreport_options_include_exclude_key');
  }
  $key1 = '';
  $key2 = '';
  $output .= include('cgi/pkgreport_options_include_exclude_key');
  $output;
}