This file is indexed.

/usr/share/horde/ingo/templates/basic/script/script.html.php is in php-horde-ingo 3.2.13-1.

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
<h1 class="header"><?php echo _("Script") ?></h1>
<?php if ($this->scriptexists): ?>
<table class="scriptHeader">
 <tr>
  <td align="center">
<?php if ($this->showactivate): ?>
   <form method="post" name="activate_script" action="<?php echo $this->scripturl ?>">
    <input type="hidden" name="actionID" value="action_activate" />
    <input class="horde-default" type="submit" name="submit" value="<?php echo _("Activate Script") ?>" />
   </form>
   <form method="post" name="deactivate_script" action="<?php echo $this->scripturl ?>">
    <input type="hidden" name="actionID" value="action_deactivate" />
    <input type="submit" name="submit" value="<?php echo _("Deactivate Script") ?>" />
   </form>
   <form method="post" name="show_active_script" action="<?php echo $this->scripturl ?>">
    <input type="hidden" name="actionID" value="show_active" />
    <input type="submit" name="submit" value="<?php echo _("Show Active Script") ?>" />
   </form>
<?php else: ?>
   <form method="post" name="show_current_script" action="<?php echo $this->scripturl ?>">
    <input type="submit" name="submit" value="<?php echo _("Show Current Script") ?>" />
   </form>
<?php endif; ?>
  </td>
 </tr>
</table>

<?php echo $this->renderPartial('script', array('collection' => $this->scripts)) ?>

<?php else: ?>
<div>[<?php echo _("No script generated.") ?>]</div>
<?php endif; ?>