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 : 3.142.237.38
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 # Net::HTTP exception class. # You cannot use Net::HTTPExceptions directly; instead, you must use # its subclasses. module Net::HTTPExceptions def initialize(msg, res) #:nodoc: super msg @response = res end attr_reader :response alias data response #:nodoc: obsolete end class Net::HTTPError < Net::ProtocolError include Net::HTTPExceptions end class Net::HTTPRetriableError < Net::ProtoRetriableError include Net::HTTPExceptions end class Net::HTTPServerException < Net::ProtoServerError # We cannot use the name "HTTPServerError", it is the name of the response. include Net::HTTPExceptions end class Net::HTTPFatalError < Net::ProtoFatalError include Net::HTTPExceptions end