This file is indexed.

/usr/lib/python3/dist-packages/glances/outputs/static/html/plugins/ports.html is in glances 2.7.1.1-2.

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
<div class="table-row" ng-repeat="port in statsPorts.ports">
  <div class="table-cell text-left">{{(port.description ? port.description : port.host + ' ' + port.port) | min_size: 20}}</div>
  <div class="table-cell"></div>
  <div ng-switch="port.status" ng-class="statsPorts.getDecoration(port)" class="table-cell">
    <span ng-switch-when="null">Scanning</span>
    <span ng-switch-when="false">Timeout</span>
    <span ng-switch-when="true">Open</span>
    <span ng-switch-default>{{port.status * 1000.0 | number:0}}ms</span>
  </div>
</div>