This file is indexed.

/usr/lib/ruby/vendor_ruby/mechanize/test_case/redirect_servlet.rb is in ruby-mechanize 2.7.2-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
class RedirectServlet < WEBrick::HTTPServlet::AbstractServlet
  def do_GET(req, res)
    res['Content-Type'] = req.query['ct'] || 'text/html'
    res.status = req.query['code'] ? req.query['code'].to_i : '302'
    res['Location'] = req['X-Location'] || '/verb'
  end

  alias :do_POST :do_GET
  alias :do_HEAD :do_GET
  alias :do_PUT :do_GET
  alias :do_DELETE :do_GET
end