This file is indexed.

/usr/share/doc/libxml-perl/examples/perlsax-test.pl is in libxml-perl 0.08-2.

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
use XML::Parser::PerlSAX;
use XML::Handler::Sample;

if ($#ARGV != 0) {
    die "usage: esis-test FILE\n";
}
$file = shift @ARGV;

$my_handler = XML::Handler::Sample->new;

XML::Parser::PerlSAX->new->parse(Source => { SystemId => $file },
				 Handler => $my_handler);