This file is indexed.

/usr/lib/ruby/vendor_ruby/action_dispatch/middleware/templates/routes/_route.html.erb is in ruby-actionpack 2:4.2.10-0ubuntu4.

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
<tr class='route_row' data-helper='path'>
  <td data-route-name='<%= route[:name] %>'>
    <% if route[:name].present? %>
      <%= route[:name] %><span class='helper'>_path</span>
    <% end %>
  </td>
  <td data-route-verb='<%= route[:verb] %>'>
    <%= route[:verb] %>
  </td>
  <td data-route-path='<%= route[:path] %>' data-regexp='<%= route[:regexp] %>'>
    <%= route[:path] %>
  </td>
  <td data-route-reqs='<%= route[:reqs] %>'>
    <%= route[:reqs] %>
  </td>
</tr>