This file is indexed.

/usr/share/perl5/Bot/BasicBot/Pluggable/Module/Base.pm is in libbot-basicbot-pluggable-perl 1.20-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
13
14
15
package Bot::BasicBot::Pluggable::Module::Base;
$Bot::BasicBot::Pluggable::Module::Base::VERSION = '1.20';
use warnings;
use strict;
use base qw( Bot::BasicBot::Pluggable::Module );

BEGIN {
    warn
"* Please do not use Bot::BasicBot::Pluggable::Module::Base as base class of your module\n"
      . "* Its usage is deprecated and the module will be removed in a few releases\n";
}

1;

__END__