This file is indexed.

/usr/share/icingaweb2/modules/monitoring/application/views/scripts/list/contacts.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?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 ($contacts->hasResult()): ?>
    <table class="action table-row-selectable common-table" data-base-target="_next">
        <thead>
        <tr>
            <th><?= $this->translate('Name') ?></th>
            <th><?= $this->translate('Email') ?></th>
            <th><?= $this->translate('Pager') ?></th>
        </tr>
        </thead>
        <tbody>
        <?php foreach ($contacts->peekAhead($this->compact) as $contact): ?>
            <tr>
            <td>
                <?= $this->qlink(
                    $contact->contact_name,
                    'monitoring/show/contact',
                    array('contact_name' => $contact->contact_name),
                    array('title' => sprintf(
                        $this->translate('Show detailed information about %s'),
                        $contact->contact_alias
                    ), 'class' => 'rowaction')
                ); ?>
            </td>
            <td>
                <?= $this->translate('Email') ?>:
                <a href="mailto:<?= $contact->contact_email; ?>"
                   title="<?= sprintf($this->translate('Send a mail to %s'), $contact->contact_alias); ?>"
                   aria-label="<?= sprintf($this->translate('Send a mail to %s'), $contact->contact_alias); ?>">
                    <?= $this->escape($contact->contact_email); ?>
                </a>
            </td>
                <td>
                <?php if ($contact->contact_pager): ?>
                    <?= $this->escape($contact->contact_pager) ?>
                <?php endif; ?>
                </td>

                <?php if ($contact->contact_notify_service_timeperiod): ?>
                <td>
                    <?= $this->escape($contact->contact_notify_service_timeperiod) ?>
                </td>
                <?php endif; ?>

                <?php if ($contact->contact_notify_host_timeperiod): ?>
                <td>
                    <?= $this->escape($contact->contact_notify_host_timeperiod) ?>
                </td>
                <?php endif; ?>
            </tr>
        <?php endforeach ?>
        </tbody>
    </table>
    <?php if ($contacts->hasMore()): ?>
        <?= $this->qlink(
            $this->translate('Show More'),
            $this->url()->without(array('view', 'limit')),
            null,
            array(
                'data-base-target'  => '_next',
                'class'             => 'pull-right action-link'
            )
        ); ?>
    <?php endif ?>
<?php else: ?>
    <?= $this->translate('No contacts found matching the filter'); ?>
<?php endif ?>
</div>