This file is indexed.

/usr/share/horde/turba/templates/test/ldapserver.inc is in php-horde-turba 4.2.12-1ubuntu1.

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
<form name="form1" method="post" action="<?php echo $self_url ?>">
<table>
 <tr>
  <td align="right">
   <label for="server">Server</label>
  </td>
  <td>
   <input type="text" id="server" name="server" />
  </td>
 </tr>
 <tr>
  <td align="right">
   <label for="port">Port</label>
  </td>
  <td>
   <input type="text" id="port" name="port" />
  </td>
  <td>(defaults to "389")</td>
 </tr>
 <tr>
  <td align="right">
   <label for="basedn">Base DN</label>
  </td>
  <td>
   <input type="text" id="basedn" name="basedn" />
  </td>
  <td>(e.g. "dc=example,dc=com")</td>
 </tr>
 <tr>
  <td align="right">
   <label for="user">User</label>
  </td>
  <td>
   <input type="text" id="user" name="user" />
  </td>
  <td>(leave blank for anonymous)</td>
 </tr>
 <tr>
  <td align="right">
   <label for="passwd">Password</label>
  </td>
  <td>
   <input type="password" id="passwd" name="passwd" />
  </td>
 </tr>
 <tr>
  <td align="right">
   <label for="filter">Filter</label>
  </td>
  <td>
   <input type="text" id="filter" name="filter" />
  </td>
  <td>(e.g. "cn=Babs Jensen")</td>
 </tr>
 <tr>
  <td align="right">
   <label for="proto">Protocol</label>
  </td>
  <td>
   <select id="version" name="version">
    <option value="2">LDAPv2 (Deprecated)</option>
    <option value="3" selected="selected">LDAPv3</option>
   </select>
  </td>
  <td>(LDAP protocol version)</td>
 </tr>
 <tr>
  <td></td>
  <td>
   <input type="submit" name="f_submit" value="Submit" />
   <input type="reset" name="f_reset" value="Reset" />
  </td>
 </tr>
</table>
</form>