This file is indexed.

/usr/share/icingaweb2/modules/monitoring/application/views/scripts/show/components/actions.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
<?php

use Icinga\Web\Navigation\Navigation;

$navigation = new Navigation();
$navigation->load($object->getType() . '-action');
foreach ($navigation as $item) {
    $item->setObject($object);
}



foreach ($object->getActionUrls() as $i => $link) {
    $navigation->addItem(

        // add warning to links that open in new tabs to improve accessibility, as recommended by WCAG20 G201
        $this->icon(
            'forward',
            $this->translate('Link opens in new window'),
            array('aria-label' => $this->translate('Link opens in new window'))
        ) . ' Action ' . ($i + 1),
        array(
            'url'       => $link,
            'target'    => '_blank',
            'renderer'  => array(
                'NavigationItemRenderer',
                'escape_label' => false
            )
        )
    );
}

if (isset($this->actions)) {
    foreach ($this->actions as $id => $action) {
        $navigation->addItem($id, array('url' => $action));
    }
}

if ($navigation->isEmpty() || !$navigation->hasRenderableItems()) {
    return;
}

?>
<tr>
    <th><?= $this->translate('Actions'); ?></th>
    <?= $navigation->getRenderer()->setElementTag('td')->setCssClass('actions'); ?>
</tr>