This file is indexed.

/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/policy_endpoint.rb is in chef-zero 4.5.0-2.

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
require 'chef_zero/chef_data/data_normalizer'

module ChefZero
  module Endpoints
    # /organizations/ORG/policies/NAME
    class PolicyEndpoint < RestBase
      # GET /organizations/ORG/policies/NAME
      def get(request)
        revisions = list_data(request, request.rest_path + ["revisions"])
        data = { revisions: hashify_list(revisions) }
        return json_response(200, data)
      end

      # DELETE /organizations/ORG/policies/NAME
      def delete(request)
        revisions = list_data(request, request.rest_path + ["revisions"])
        data = { revisions: hashify_list(revisions) }

        delete_data_dir(request, nil, :recursive)
        return json_response(200, data)
      end
    end
  end
end