Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
3.0.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
609
B
-rw-r--r--
2021-07-07 19:08
exceptions.rb
873
B
-rw-r--r--
2021-07-07 19:08
generic_request.rb
9.56
KB
-rw-r--r--
2026-06-17 20:57
header.rb
16.7
KB
-rw-r--r--
2021-07-07 19:08
proxy_delta.rb
272
B
-rw-r--r--
2021-07-07 19:08
request.rb
746
B
-rw-r--r--
2021-07-07 19:08
requests.rb
2.91
KB
-rw-r--r--
2021-07-07 19:08
response.rb
10.57
KB
-rw-r--r--
2021-07-07 19:08
responses.rb
9.8
KB
-rw-r--r--
2021-07-07 19:08
status.rb
2.19
KB
-rw-r--r--
2021-07-07 19:08
Save
Rename
# frozen_string_literal: false # HTTP request class. # This class wraps together the request header and the request path. # You cannot use this class directly. Instead, you should use one of its # subclasses: Net::HTTP::Get, Net::HTTP::Post, Net::HTTP::Head. # class Net::HTTPRequest < Net::HTTPGenericRequest # Creates an HTTP request object for +path+. # # +initheader+ are the default headers to use. Net::HTTP adds # Accept-Encoding to enable compression of the response body unless # Accept-Encoding or Range are supplied in +initheader+. def initialize(path, initheader = nil) super self.class::METHOD, self.class::REQUEST_HAS_BODY, self.class::RESPONSE_HAS_BODY, path, initheader end end