This file is indexed.

/usr/share/chef-server-webui/app/views/users/new.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
21
22
23
24
25
26
27
.block#block-forms
  .content
    %h2.title Create New User
    .inner
      = partial('navigation', :active => 'create')
    .content
      .inner
        %form.form{ :method => "get", "accept-charset" => "UTF-8", :action => url(:users_create) }
          %table.table
            %tr
              %td= "Username"
              %td= text_field :name
            %tr
              %td= "Password"
              %td= password_field :password
            %tr
              %td= "Confirm Password"
              %td= password_field :password2
            %tr
              %td= "Admin"
              %td= check_box :name => "admin", :value => "1"
            %tr
              %td= "OpenID (optional)"
              %td= text_field :openid

          .group.navform
            .button= submit "Create"