This file is indexed.

/usr/lib/ruby/vendor_ruby/web_console/helper.rb is in ruby-web-console 2.2.1-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
module WebConsole
  module Helper
    # Communicates with the middleware to render a console in a +binding+.
    #
    # If +bidning+ isn't explicitly given, Binding#of_caller will be used to
    # get the binding of the previous frame. E.g. the one that invoked
    # +console+.
    #
    # Raises DoubleRenderError if a double +console+ invocation per request is
    # detected.
    def console(binding = nil)
      raise DoubleRenderError if request.env['web_console.binding']

      request.env['web_console.binding'] = binding || ::Kernel.binding.of_caller(1)

      # Make sure nothing is rendered from the view helper. Otherwise
      # you're gonna see unexpected #<Binding:0x007fee4302b078> in the
      # templates.
      nil
    end
  end
end