This file is indexed.

/usr/share/doc/libnet-finger-perl/examples/array.pl is in libnet-finger-perl 1.06-6.1.

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
#!/usr/bin/perl
# 
# Simple example. Finger a certain Host and put its response
# into a list, then Dump this list with Data::Dumper.
#
# See: http://search.cpan.org/~fimm/Net-Finger-1.06/Finger.pm
# for more examples.
#
use Net::Finger;
use Data::Dumper;
@lines = finger('user@192.168.1.1', 1);
print Dumper(@lines);