This file is indexed.

/usr/share/perl5/PlSense/Entity/Null.pm is in plsense 0.3.4-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
16
17
18
19
20
21
22
23
24
25
26
27
28
package PlSense::Entity::Null;

use parent qw{ PlSense::Entity };
use strict;
use warnings;
use Class::Std::Storable;
use PlSense::Logger;
{
    sub BUILD {
        my ($class, $ident, $arg_ref) = @_;
        $class->set_type("null");
    }

    sub to_string {
        my $self = shift;
        my $ret = "NULL";
        return $ret;
    }

    sub clone {
        my $self = shift;
        return PlSense::Entity::Null->new();
    }
}

1;

__END__