This file is indexed.

/usr/share/gosa/plugins/admin/systems/password.tpl is in gosa-plugin-systems 2.7.4+reloaded2-13+deb9u1.

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
<script type="text/javascript" src="include/pwdStrength.js"></script>
<p>
 {t}To change the terminal root password use the fields below. The changes take effect during the next reboot. Please memorize the new password, because you wouldn't be able to log in.{/t}
</p>
<p>
 <b>{t}Leave fields blank for password inheritance from default entries.{/t}</b>
</p>

<p>
 {t}Changing the password impinges on authentication only.{/t}
</p>

<table summary="{t}System password change{/t}">

  <tr>
    <td><b><LABEL for="new_password">{t}New password{/t}</LABEL></b></td>
    <td>
        {factory type='password' id='new_password' name='new_password'
            onkeyup="testPasswordCss(\$('new_password').value);" onfocus="nextfield='repeated_password';"}
    </td>
  </tr>
  <tr>
    <td><b><LABEL for="repeated_password">{t}Repeat new password{/t}</LABEL></b></td>
    <td>
        {factory type='password' id='repeated_password' name='repeated_password'
            onfocus="nextfield='password_finish'"}
    </td>
  </tr>
  <tr>
       <td>{t}Password strength{/t}</td>
       <td>
        <span id="meterEmpty" style="padding:0;margin:0;width:100%;background-color:#DC143C;display:block;height:5px;">
        <span id="meterFull" style="padding:0;margin:0;z-index:100;width:0;background-color:#006400;display:block;height:5px;"></span></span>
       </td>
      </tr>
 
</table>

<hr>
<div class="plugin-actions">
  <button type='submit' id='password_finish'name='password_finish'>{t}Set password{/t}</button>
  <button type='submit' id='password_cancel'name='password_cancel'>{msgPool type=cancelButton}</button>
</div>


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