This file is indexed.

/usr/share/chef-server-webui/app/views/users/index.html.haml is in chef-server-webui 10.12.0+dfsg-1.

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
.block#block-tables
  .content
    %h2.title Users
    .inner
      = partial('navigation', :active => 'index')
    .content
      .inner
        %table.table
          %tr
            %th.first{:colspan => 2} Username
            %th  
            %th.last  
          - even = false
          - @users.sort.each do |user, user_url|
            %tr{:class => even ? "even": "odd" }
              %td{:colspan => 2}= link_to user, url(:users_show, :user_id => user)
              %td
                = link_to('Edit', url(:users_edit, :user_id => user)) 
                |
                = link_to('Delete', url(:users_delete, :user_id => user), :method => "delete", :confirm => "Really delete User #{user}?  There is no undo.")