This file is indexed.

/usr/share/doc/libnet-sslglue-perl/examples/ftps-direct.pl is in libnet-sslglue-perl 1.055-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
use strict;
use warnings;
use Net::SSLGlue::FTP;

my $ftp = Net::FTP->new( 'ftp.example.com', 
    SSL => 1, 
    SSL_ca_path => '/etc/ssl/certs',
    Passive => 1,
    Debug => 1,
);
$ftp->login('foo','bar');
print $ftp->ls;