Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.227.107.69
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby25 /
lib64 /
ruby /
2.5.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
609
B
-rw-r--r--
2021-04-05 11:46
exceptions.rb
741
B
-rw-r--r--
2021-04-05 11:46
generic_request.rb
9.36
KB
-rw-r--r--
2021-04-05 11:46
header.rb
15.61
KB
-rw-r--r--
2021-04-05 11:46
proxy_delta.rb
272
B
-rw-r--r--
2021-04-05 11:46
request.rb
746
B
-rw-r--r--
2021-04-05 11:46
requests.rb
2.91
KB
-rw-r--r--
2021-04-05 11:46
response.rb
10.15
KB
-rw-r--r--
2021-04-05 11:46
responses.rb
9.43
KB
-rw-r--r--
2021-04-05 11:46
status.rb
2.18
KB
-rw-r--r--
2021-04-05 11:46
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