This file is indexed.

/usr/share/gosa/plugins/admin/groups/apps/edit_entry.tpl is in gosa-plugin-goto 2.7.4+reloaded2-1+deb8u2.

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
{if $type == "FOLDER"}
<h3>{$entry.NAME}</h3>

<table summary="{t}Edit application image{/t}" >
	<tr>
		<td>
			{t}Folder image{/t}
		</td>
		<td>
			{if $image_set}
				<img src="getbin.php?{$rand}" alt='{t}Could not load image.{/t}'>
			{else}
				<i>{t}None{/t}</i>
			{/if}
		</td>
	</tr>
	<tr>
		<td colspan=2>
			&nbsp;
		</td>
	</tr>
	<tr>
		<td>{t}Upload image{/t}
		</td>
		<td>
			<input type="FILE" name="folder_image">
			<button type='submit' name='folder_image_upload'>{t}Upload{/t}</button>

		</td>
	</tr>
	<tr>
		<td>{t}Reset image{/t}</td>
		<td><button type='submit' name='edit_reset_image'>{t}Reset{/t}</button>
</td>
	</tr>
</table>
<br>
{/if}

{if $type == "ENTRY"}
<h3>{t}Application settings{/t}</h3>
<table summary="{t}Edit application settings{/t}">
	<tr>
		<td>{t}Name{/t}</td>
		<td>{$entry.NAME}</td>
	</tr>
	<tr>
		<td colspan="2">
			&nbsp;
		</td>
	</tr>
	<tr>
		<td colspan="2">
			<b>{t}Application options{/t}</b>
		</td>
	</tr>
{foreach from=$paras item=item key=key}
	<tr>
		<td>{$key}&nbsp;</td>
		<td><input style='width:200px;' type='text' name="parameter_{$key}" value="{$item}"></td>
	</tr>
{/foreach}
</table>
{/if}
<p class="seperator">
</p>
<div style="width:100%; text-align:right; padding:3px;">
	<button type='submit' name='app_entry_save'>{msgPool type=saveButton}</button>

	&nbsp;
	<button type='submit' name='app_entry_cancel'>{msgPool type=cancelButton}</button>

</div>