This file is indexed.

/usr/share/perl5/PlSense/Plugin/AddressFinder.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
package PlSense::Plugin::AddressFinder;

use strict;
use warnings;
use Class::Std;
{
    my %with_build_is :ATTR( :init_arg<with_build> );
    sub with_build : RESTRICTED { my ($self) = @_; return $with_build_is{ident $self} ? 1 : 0; }

    my %mediator_of :ATTR( :init_arg<mediator> );
    sub get_mediator : RESTRICTED { my ($self) = @_; return $mediator_of{ident $self}; }

    sub find_address {
        my ($self, @tokens) = @_;
        return;
    }

    sub find_address_or_entity {
        my ($self, @tokens) = @_;
        return;
    }
}

1;

__END__