This file is indexed.

/usr/share/doc/libhttp-server-simple-perl/examples/sample_server is in libhttp-server-simple-perl 0.51-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use warnings;
use strict;

use HTTP::Server::Simple::CGI;

my $server = HTTP::Server::Simple->new();
$server->run();