This file is indexed.

/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/sandbox_endpoint.rb is in chef-zero 2.0.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
24
25
26
27
require 'chef_zero/rest_base'
require 'chef_zero/rest_error_response'
require 'json'

module ChefZero
  module Endpoints
    # /sandboxes/ID
    class SandboxEndpoint < RestBase
      def put(request)
        existing_sandbox = JSON.parse(get_data(request), :create_additions => false)
        existing_sandbox['checksums'].each do |checksum|
          if !exists_data?(request, ['file_store', 'checksums', checksum])
            raise RestErrorResponse.new(503, "Checksum not uploaded: #{checksum}")
          end
        end
        delete_data(request)
        json_response(200, {
          :guid => request.rest_path[1],
          :name => request.rest_path[1],
          :checksums => existing_sandbox['checksums'],
          :create_time => existing_sandbox['create_time'],
          :is_completed => true
        })
      end
    end
  end
end