Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
609
B
-rw-r--r--
2015-12-16 05:07
exceptions.rb
741
B
-rw-r--r--
2015-12-16 05:07
generic_request.rb
9.35
KB
-rw-r--r--
2016-08-15 20:00
header.rb
15.26
KB
-rw-r--r--
2018-03-28 04:54
proxy_delta.rb
272
B
-rw-r--r--
2015-12-16 05:07
request.rb
746
B
-rw-r--r--
2015-12-16 05:07
requests.rb
2.91
KB
-rw-r--r--
2015-12-16 05:07
response.rb
10.15
KB
-rw-r--r--
2015-12-16 05:07
responses.rb
8.61
KB
-rw-r--r--
2015-12-16 05:07
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