This file is indexed.

/usr/share/gosa/plugins/admin/systems/goto/terminalStartup.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
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<h3>{t}Boot parameters{/t}</h3>
<table summary="" style="width:100%;">
 <tr>
  <td style='width:50%;' class='right-border'>

   <LABEL for="gotoLdapServer">{t}LDAP server{/t}</LABEL>

   {render acl=$gotoLdapServerACL}
    {if $member_of_ogroup}
      (<input type='checkbox' name='gotoLdap_inherit' {if $gotoLdap_inherit} checked {/if} value="1"
        onClick="document.mainform.submit();" class='center'>&nbsp;{t}inherit from group{/t})
    {/if}
   {/render}

   {render acl=$gotoLdapServerACL_inherit}
    {$gotoLdapServers}
   {/render}

   {render acl=$gotoLdapServerACL_inherit}
    <select name='ldap_server_to_add' id='ldap_server_to_add' size=1>
     {html_options options=$gotoLdapServerList}
    </select>
   {/render}

   {render acl=$gotoLdapServerACL_inherit}
    <button type='submit' name='add_ldap_server' id="add_ldap_server">{msgPool type=addButton}</button>
   {/render}

  </td>
  <td>

   <table summary="" style="width:100%">
    <tr>
     <td style="width:30%"><LABEL for="gotoBootKernel">{t}Boot kernel{/t}</LABEL></td>
     <td>
      {render acl=$gotoBootKernelACL}
        <select id="gotoBootKernel" name="gotoBootKernel" size=1>
         {html_options options=$gotoBootKernels  selected=$gotoBootKernel}
         <option disabled>&nbsp;</option>
        </select>
      {/render}
     </td>
    </tr>
    <tr>
     <td><LABEL for="gotoKernelParameters">{t}Custom options{/t}</LABEL></td>
     <td>
      {render acl=$gotoKernelParametersACL}
       <input name="gotoKernelParameters" id="gotoKernelParameters"  size=25 maxlength=500
            value="{$gotoKernelParameters}" type='text' 
            title="{t}Enter any parameters that should be passed to the kernel as append line during boot up{/t}">
      {/render}
     </td>
    </tr>
   </table>

  </td>
 </tr>
</table>

<hr>

<table summary="" style="width:100%;">
 <tr>
  <td style='width:50%; ' class='right-border'>


   <!--
    - Kernel modules
    -->
   <h3>{t}Kernel modules (format: name parameters){/t}</h3>
   {render acl=$gotoModulesACL}
    <select style="width:100%; height:100px;" name="modules_list[]" size=15 multiple 
      title="{t}Add additional modules to load on startup{/t}">
     {html_options values=$gotoModules output=$gotoModules}
     <option disabled>&nbsp;</option>
    </select>
   {/render}

   <br>
   {render acl=$gotoModulesACL}
    <input type='text' name="module" size=30 align=middle maxlength=30>
   {/render}

   {render acl=$gotoModulesACL}
    <button type='submit' name='add_module'>
   {msgPool type=addButton}</button>
    &nbsp;
   {/render}

   {render acl=$gotoModulesACL}
    <button type='submit' name='delete_module'>
    {msgPool type=delButton}</button>
   {/render}
  </td>
  
  
  <td>
 
  
   <!--
    - Shares
    -->
   <h3><label for="gotoShare">{t}Shares{/t}</label></h3>
    
   {render acl=$gotoShareACL}
    <select style="width:100%;height:100px;" name="gotoShare" multiple size=4 id="gotoShare">
     {html_options values=$gotoShareKeys output=$gotoShares}
     <option disabled>&nbsp;</option>
    </select>
   {/render}

   <br>
   
   {render acl=$gotoShareACL}
    <select name="gotoShareSelection" size=1>
     {html_options values=$gotoShareSelectionKeys output=$gotoShareSelections}
     <option disabled>&nbsp;</option>
    </select>
   {/render}

   {render acl=$gotoShareACL}
    <input type="text" size=15 name="gotoShareMountPoint" value="{t}Mount point{/t}">
   {/render}

   {render acl=$gotoShareACL} 
    <button type='submit' name='gotoShareAdd'>
    {msgPool type=addButton}</button>
   {/render}

   {render acl=$gotoShareACL}
    <button type='submit' name='gotoShareDel' {if $gotoSharesCount == 0} disabled {/if}>{t}Remove{/t}</button>
   {/render}

  </td>
 </tr>
</table>
<input type='hidden' name='TerminalStarttabPosted' value="1">

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