This file is indexed.

/usr/lib/ruby/vendor_ruby/chef_zero/endpoints/environment_nodes_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
require 'json'
require 'chef_zero/rest_base'

module ChefZero
  module Endpoints
    # /environment/NAME/nodes
    class EnvironmentNodesEndpoint < RestBase
      def get(request)
        # 404 if environment does not exist
        get_data(request, request.rest_path[0..1])

        result = {}
        list_data(request, ['nodes']).each do |name|
          node = JSON.parse(get_data(request, ['nodes', name]), :create_additions => false)
          if node['chef_environment'] == request.rest_path[1]
            result[name] = build_uri(request.base_uri, ['nodes', name])
          end
        end
        json_response(200, result)
      end
    end
  end
end