This file is indexed.

/usr/lib/perl5/YAML/XS/LibYAML.pm is in libyaml-libyaml-perl 0.41-5.

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
package YAML::XS::LibYAML;
use 5.008003;
use strict;
use warnings;

use XSLoader;
XSLoader::load 'YAML::XS::LibYAML';
use base 'Exporter';

our @EXPORT_OK = qw(Load Dump);

1;

=head1 NAME

YAML::XS::LibYAML - An XS Wrapper Module of libyaml

=cut