This file is indexed.

/usr/lib/python3/dist-packages/glances/outputs/static/public/stats.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
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
<div ng-show="!dataLoaded" class="container-fluid" id="loading-page">
    <div class="glances-logo"></div>
    <div class="loader">Loading...</div>
</div>

<div ng-show="arguments.help_tag" class="container-fluid" ng-include src="'help.html'"></div>

<div ng-show="dataLoaded && !arguments.help_tag" class="container-fluid">
    <div class="row">
        <div class="col-sm-24">
            <div class="pull-left">
                <section id="system" class="plugin" ng-include src="'plugins/system.html'"></section>
            </div>
            <div class="pull-left">
                <section id="ip" class="plugin" ng-if="statsIp.address != undefined && !arguments.disable_ip" ng-include src="'plugins/ip.html'"></section>
            </div>
            <div class="pull-right">
                <section id="uptime" class="plugin" ng-include src="'plugins/uptime.html'"></section>
            </div>
        </div>
    </div>
    <div class="row">
        <div class="hidden-xs hidden-sm hidden-md col-lg-6" ng-if="!arguments.disable_quicklook">
            <section id="quicklook" class="plugin" ng-include src="'plugins/quicklook.html'"></section>
        </div>
        <div class="col-sm-6 col-md-8 col-lg-6" ng-if="!arguments.disable_cpu && !arguments.percpu">
            <section id="cpu" class="plugin" ng-include src="'plugins/cpu.html'"></section>
        </div>
        <div class="col-sm-12 col-md-8 col-lg-6" ng-if="!arguments.disable_cpu && arguments.percpu">
            <section id="per_cpu" class="plugin" ng-include src="'plugins/per_cpu.html'"></section>
        </div>
        <div class="col-sm-6 col-md-4 col-lg-3" ng-if="!arguments.disable_mem">
            <section id="mem" class="plugin" ng-include src="'plugins/mem.html'"></section>
        </div>
        <div class="hidden-xs hidden-sm col-md-4 col-lg-3" ng-if="!arguments.disable_mem">
            <section id="mem_more" class="plugin" ng-include src="'plugins/mem_more.html'"></section>
        </div>
        <div class="col-sm-6 col-md-4 col-lg-3" ng-if="!arguments.disable_swap">
            <section id="memswap" class="plugin" ng-include src="'plugins/memswap.html'"></section>
        </div>
        <div class="col-sm-6 col-md-4 col-lg-3" ng-if="!arguments.disable_load">
            <section id="load" class="plugin" ng-if="statsLoad.cpucore != undefined" ng-include src="'plugins/load.html'"></section>
        </div>
    </div>
    <div class="row">
        <div class="col-sm-6 sidebar" ng-show="!arguments.disable_left_sidebar">
            <div class="table">
                <section id="network" class="plugin table-row-group" ng-show="!arguments.disable_network" ng-include src="'plugins/network.html'"></section>
                <section id="ports" class="plugin table-row-group" ng-show="!arguments.disable_ports" ng-include src="'plugins/ports.html'"></section>
                <section id="diskio" class="plugin table-row-group" ng-show="!arguments.disable_diskio && statsDiskio.disks.length > 0" ng-include src="'plugins/diskio.html'"></section>

                <section id="fs" class="plugin table-row-group" ng-show="!arguments.disable_fs" ng-include src="'plugins/fs.html'"></section>
		<section id="irq" class="plugin table-row-group" ng-show="!arguments.disable_irq" ng-include src="'plugins/irq.html'"></section>
		<section id="folders" class="plugin table-row-group" ng-show="!arguments.disable_fs && statsFolders.folders.length > 0" ng-include src="'plugins/folders.html'"></section>
                <section id="raid" class="plugin table-row-group" ng-show="statsRaid.hasDisks()" ng-include src="'plugins/raid.html'"></section>
                <section id="sensors" class="plugin table-row-group" ng-show="!arguments.disable_sensors && statsSensors.sensors.length > 0" ng-include src="'plugins/sensors.html'"></section>
            </div>
        </div>
        <div class="col-sm-18">
            <section id="containers" class="plugin" ng-show="statsDocker.containers.length && !arguments.disable_docker" ng-include src="'plugins/docker.html'"></section>
            <section id="alerts" ng-show="!arguments.disable_log" ng-include src="'plugins/alerts.html'"></section>
            <section id="alert" class="plugin" ng-show="!arguments.disable_log" ng-include src="'plugins/alert.html'"></section>
            <div ng-show="!arguments.disable_process">
                <section id="processcount" class="plugin" ng-include src="'plugins/processcount.html'"></section>
                <div class="row" ng-if="!arguments.disable_amps">
                    <div class="col-lg-18">
                        <section id="amps" class="plugin" ng-include src="'plugins/amps.html'"></section>
                    </div>
                </div>
                <section id="processlist" class="plugin" ng-include src="'plugins/processlist.html'"></section>
            </div>
            <div ng-show="arguments.disable_process">PROCESSES DISABLED (press 'z' to display)</div>
        </div>
    </div>
</div>