This file is indexed.

/usr/share/zentyal/stubs/dhcp/includes.mas is in zentyal-dhcp 2.3.3.

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
<%doc>
  This template is done in order to add include statements to the dhcp
  server.

Parameters:

  iface - String the iface to search for
</%doc>
<%args>
  $iface
</%args>
<%init>
use EBox::DHCP;
my $dirName = EBox::DHCP->PluginConfDir($iface);
opendir ( my $dirHandle, $dirName);
my @files = ();
while ( defined(my $fileName = readdir ($dirHandle))) {
    next unless -f "$dirName$fileName";
    push ( @files, "$dirName$fileName" );
}
closedir ($dirHandle);
</%init>
% foreach my $includeFile (@files) {
        include "<% $includeFile %>";
% }