This file is indexed.

/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/data_bags_endpoint.rb is in chef-zero 5.1.1-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
require "ffi_yajl"
require "chef_zero/endpoints/rest_list_endpoint"

module ChefZero
  module Endpoints
    # /data
    class DataBagsEndpoint < RestListEndpoint
      def post(request)
        contents = request.body
        json = FFI_Yajl::Parser.parse(contents)
        name = identity_keys.map { |k| json[k] }.select { |v| v }.first
        if name.nil?
          error(400, "Must specify #{identity_keys.map { |k| k.inspect }.join(' or ')} in JSON")
        elsif exists_data_dir?(request, request.rest_path[0..1] + ["data", name])
          error(409, "Object already exists")
        else
          create_data_dir(request, request.rest_path[0..1] + ["data"], name, :recursive)
          json_response(201, { "uri" => "#{build_uri(request.base_uri, request.rest_path + [name])}" })
        end
      end
    end
  end
end