This file is indexed.

/usr/share/chef-server-webui/app/views/clients/show.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
.block#block-tables
  .content
    %h2.title= "Client: #{h @client.name}"
    .inner
      = partial("navigation", :active => "show")
      .content
        .inner
          .left
            %h3 Admin
            = @client.admin
          .left
            %h3 Public Key
            %pre= convert_newline_to_br(@client.public_key)
          -unless @private_key.nil?
            .left
              %h3 Private Key (Will not show again, Please copy!)
              %h4.bold Please copy and save as the client's validation key (e.g. client.pem)
              %pre= convert_newline_to_br(@private_key)