This file is indexed.

/usr/share/php/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/table.html.twig is in php-symfony-web-profiler-bundle 2.7.10-0ubuntu2.

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
<table {% if class is defined %}class='{{ class }}'{% endif %} >
    <thead>
        <tr>
            <th scope="col" style="width: 25%">Key</th>
            <th scope="col" style="width: 75%">Value</th>
        </tr>
    </thead>
    <tbody>
        {% for key in data|keys|sort %}
            <tr>
                <th>{{ key }}</th>
                <td><pre>{{ profiler_dump(data[key]) }}</pre></td>
            </tr>
        {% endfor %}
    </tbody>
</table>