This file is indexed.

/usr/share/gosa/plugins/admin/systems/services/dhcp/dhcp_tsigkey.tpl is in gosa-plugin-dhcp 2.7.4+reloaded2-9ubuntu1.

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
{* GOsa dhcp host - smarty template *}
<h3>{t}DNS update key{/t}</h3>

<table width="100%">
 <tr>
  <td>{t}Key name{/t}{$must}</td>
  <td>
   <input id='cn' type='text' name='cn' size='25' maxlength='80' value='{$cn}'
          title='{t}Name of Key{/t}'>
  </td>
 </tr>
 <tr>
  <td>{t}Encryption method{/t}</td>
  <td>
   <select name='dhcpKeyAlgorithm'>
    {html_options options=$dhcpKeyAlgorithms selected=$dhcpKeyAlgorithm}
   </select>
  </td>
 </tr>
 <tr>
  <td>{t}Key{/t}{$must}</td>
  <td>
   <input  type='text' name='dhcpKeySecret' size='30' maxlength='80' value='{$dhcpKeySecret}'>
  </td>
 </tr>
</table>

<input type='hidden' name='dhcp_tsigkey_posted' value='1'>
<hr>

<!-- Place cursor in correct field -->
<script language="JavaScript" type="text/javascript">
  <!-- // First input field on page
	 focus_field('cn');
  -->
</script>