This file is indexed.

/usr/share/perl5/App/AllKnowingDNS/Zone.pm is in all-knowing-dns 1.7-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
# vim:ts=4:sw=4:expandtab
package App::AllKnowingDNS::Zone;

use Mouse;

has 'network' => (is => 'rw', isa => 'Str');
has 'resolves_to' => (is => 'rw', isa => 'Str');
has 'upstream_dns' => (is => 'rw', isa => 'Str');

# These are set when adding the zone to the ::Config object.
has 'ptrzone' => (is => 'rw', isa => 'Str');
has 'aaaazone' => (is => 'rw', isa => 'Regexp');

__PACKAGE__->meta->make_immutable();

1