This file is indexed.

/usr/share/icingaweb2/modules/monitoring/application/views/scripts/partials/comment/comment-detail.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
<div class="comment-header">
<?php if ($comment->objecttype === 'service'): ?>
    <?= $this->icon('service', $this->translate('Service')) ?> <?= $this->qlink(
        $comment->host_display_name . ': ' . $comment->service_display_name,
        'monitoring/service/show',
        array(
            'host'    => $comment->host_name,
            'service' => $comment->service_description
        ),
        array(
            'title' => sprintf(
                $this->translate('Show detailed information for this comment about service %s on host %s'),
                $comment->service_display_name,
                $comment->host_display_name
            )
        )
    ) ?>
<?php else: ?>
    <?= $this->icon('host', $this->translate('Host')) ?> <?= $this->qlink(
        $comment->host_display_name,
        'monitoring/host/show',
        array('host' => $comment->host_name),
        array(
            'title' => sprintf(
                $this->translate('Show detailed information for this comment about host %s'),
                $comment->host_display_name
            )
        )
    ) ?>
<?php endif ?>
    <span class="comment-meta">
        <?= $this->translate('by') ?>
        <?= $this->escape($comment->author) ?>
        <?= $this->timeAgo($comment->timestamp) ?>
        <span class="meta-icons" data-base-target="_self">
            <?= $comment->persistent ? $this->icon('attach', 'This comment is persistent.') : '' ?>
            <?= $comment->expiration ? $this->icon('clock', sprintf(
                $this->translate('This comment expires %s.'),
                $this->timeUntil($comment->expiration)
            )) : '' ?>
        <?php if (isset($delCommentForm)) {
            $deleteButton = clone $delCommentForm;
            /** @var \Icinga\Module\Monitoring\Forms\Command\Object\DeleteCommentCommandForm $deleteButton */
            $deleteButton->setAttrib('class', $deleteButton->getAttrib('class') . ' remove-action');
            $deleteButton->populate(
                array(
                    'comment_id'            => $comment->id,
                    'comment_is_service'    => isset($comment->service_description)
                )
            );
            echo $deleteButton;
        } ?>
        </span>
    </span>
</div>
<p class="comment-text">
    <?= $this->escape($comment->comment) ?>
</p>