This file is indexed.

/usr/share/icingaweb2/modules/monitoring/application/views/scripts/list/contactgroups.phtml is in icingaweb2-module-monitoring 2.1.0-1ubuntu1.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php

if (! $this->compact): ?>
<div class="controls">
    <?= $tabs ?>
    <div class="grid">
        <?= $this->sortBox ?>
        <?= $this->limiter ?>
        <?= $this->paginator ?>
    </div>
    <?= $this->filterEditor ?>
</div>
<?php endif ?>
<div class="content">
<?php
if (count($groupData) === 0) {
    echo $this->translate('No contactgroups found matching the filter') . '</div>';
    return;
}
?>
    <table class="action table-row-selectable common-table" data-base-target="_next">
        <thead>
        <tr>
            <th></th>
            <th><?= $this->translate('Contact Group ') ?></th>
            <th><?= $this->translate('Alias') ?></th>
        </tr>
        </thead>
        <tbody>

        <?php foreach ($groupData as $groupName => $groupInfo): ?>
        <tr>
            <td class="count-col">
                <span class="badge"><?= count($groupInfo['contacts'])  ?></span>
            </td>
            <td>
                <?= $this->qlink(
                    $groupName,
                    'monitoring/list/contacts',
                    array('contactgroup_name' => $groupName),
                    array('title' => sprintf(
                        $this->translate('Show detailed information about %s'),
                        $groupName
                    ))
                ) ?>
            </td>
            <td>
                <?php if ($groupInfo['alias'] !== $groupName): ?>
                    <?= $groupInfo['alias'] ?>
                <?php endif ?>
            </td>
        </tr>
        <?php endforeach ?>
        </tbody>
    </table>
</div>