This file is indexed.

/usr/share/horde/wicked/templates/edit/new.html.php is in php-horde-wicked 2.0.7-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
<form method="post" id="wicked-edit" action="<?php echo $this->action ?>">
<?php echo $this->formInput ?>
<input type="hidden" name="page" value="NewPage" />
<input type="hidden" name="actionID" value="special" />
<input type="hidden" name="referrer" value="<?php echo $this->h($this->referrer) ?>" />

<h1 class="header">
 <?php printf(_("New Page: %s"), $this->h($this->referrer)) ?>
</h1>

<div class="horde-content">
 <textarea class="fixed" style="width:100%" name="page_text" rows="29" cols="100"><?php echo $this->h($this->text) ?></textarea>
</div>

<?php if ($this->captcha): ?>
<div class="horde-content">
 <?php echo _("Spam Protection - Enter the following letters below:") ?>
 <pre><?php echo $this->captcha ?></pre>
 <input name="wicked_captcha" />
</div>
<?php endif ?>

<div class="horde-form-buttons">
 <input type="submit" value="<?php echo _("Save") ?>" class="horde-default" />
 <input type="button" id="wicked-preview" value="<?php echo _("Preview") ?>" />
</div>

</form>