This file is indexed.

/usr/share/gosa/plugins/admin/systems/goto/info.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
145
146
147
148
149
150
151
152
{if !$ACL}
	<h3>{msgPool type=permView}</h3>
{else}

<h3>{t}System information{/t}</h3>
<table summary="{t}System information{/t}" style="width:100%;">
 <tr>
  <td style='width:50%'>

   <table summary="{t}Hardware information{/t}">
    <tr>
     <td>
<b>{t}CPU{/t}</b></td><td>{$ghCpuType}</td>
    </tr>
    <tr>
     <td><b>{t}Memory{/t}</b></td><td>{$ghMemSize}</td>
    </tr>
    <tr>
     <td><b>{t}Boot MAC{/t}</b></td><td>{$macAddress}</td>
    </tr>
    <tr>
     <td>
<b>{t}USB support{/t}</b></td><td>{$ghUsbSupport}<div style="height:20px;"></div></td>
    </tr>
    <tr>
     <td><b>{t}System status{/t}</b></td>
     <td>{$status}</td>
    </tr>
    <tr>
     <td><b>{t}Inventory number{/t}</b></td>
     <td>{$ghInventoryNumber}</td>
    </tr>
    <tr>
     <td><b>{t}Last login{/t}</b></td>
     <td>{$gotoLastUser}</td>
    </tr>
   </table>
  </td>
  <td class='left-border'>

   &nbsp;
  </td>
  <td>
   <table summary="{t}Device information{/t}">
    <tr>
     <td>
<b>{t}Network devices{/t}</b></td>
     <td>
      {foreach item=netcard from=$ghNetNic}
        {$netcard}<br>
      {/foreach}
     </td>
    </tr>
    <tr><td colspan=2><div style="height:10px;"></div></td></tr>
    <tr>
     <td>
<b>{t}IDE devices{/t}</b></td>
     <td>
       {foreach item=idedev from=$ghIdeDev}
         {$idedev}<br>
       {/foreach}
     </td>
    </tr>
    <tr><td colspan=2><div style="height:10px;"></div></td></tr>
    <tr>
     <td>
<b>{t}SCSI devices{/t}</b></td>
     <td>
       {foreach item=scsidev from=$ghScsiDev}
         {$scsidev}<br>
       {/foreach}
     </td>
    </tr>
    <tr>
     <td><b>{t}Floppy device{/t}</b></td>
     <td>{$FloppyDevice}</td>
    </tr>
    <tr>
     <td><b>{t}CD-ROM device{/t}</b></td>
     <td>{$CdromDevice}</td>
    </tr>
    <tr><td colspan=2><div style="height:10px;"></div></td></tr>
    <tr>
     <td>
<b>{t}Graphic device{/t}</b></td>
     <td>{$ghGfxAdapter}</td>
    </tr>
    <tr>
     <td>
<b>{t}Audio device{/t}</b></td>
     <td>{$ghSoundAdapter}</td>
    </tr>
   </table>
  </td>
 </tr>
</table>

{if $active eq "true"}
<br>
<h3 style="border-top:1px solid #A0A0A0; padding-top:5px;">{image path="images/lists/on.png"} {t}System status{/t}
</h3>
<table summary="{t}System information{/t}" style="width:100%">
 <tr>
  <td style='width:50%'>

   <table summary="{t}Status{/t}">
    <tr>
     <td><b>{t}Up since{/t}</b></td><td>{$uptime}</td>
    </tr>
    <tr>
     <td><b>{t}CPU load{/t}</b></td><td>{$load}</td>
    </tr>
    <tr>
     <td><b>{t}Memory usage{/t}</b></td><td>{$mem}</td>
    </tr>
    <tr>
     <td><b>{t}Swap usage{/t}</b></td><td>{$swap}</td>
    </tr>
    <tr>
     <td colspan=2>&nbsp;</td>
    </tr>
    {$partitions}
   </table>
  </td>
  <td class='left-border'>

   &nbsp;
  </td>
  <td>

   <table summary="{t}Service information{/t}">
    <tr>
     <td><b>{t}SSH service{/t}</b></td><td>{$sshd}</td>
    </tr>
    <tr>
     <td><b>{t}Print service{/t}</b></td><td>{$cupsd}</td>
    </tr>
    <tr>
     <td><b>{t}Scan service{/t}</b></td><td>{$saned}</td>
    </tr>
    <tr>
     <td><b>{t}Sound service{/t}</b></td><td>{$artsd}</td>
    </tr>
    <tr>
     <td><b>{t}GUI{/t}</b></td><td>{$X}</td>
    </tr>
   </table>
  </td>
 </tr>
</table>
{/if}
{/if}