Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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.1.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
1.05
KB
-rw-r--r--
2022-04-12 11:11
exceptions.rb
873
B
-rw-r--r--
2022-04-12 11:11
generic_request.rb
9.38
KB
-rw-r--r--
2022-04-12 11:11
header.rb
16.7
KB
-rw-r--r--
2022-04-12 11:11
proxy_delta.rb
272
B
-rw-r--r--
2022-04-12 11:11
request.rb
746
B
-rw-r--r--
2022-04-12 11:11
requests.rb
2.91
KB
-rw-r--r--
2022-04-12 11:11
response.rb
10.57
KB
-rw-r--r--
2022-04-12 11:11
responses.rb
9.8
KB
-rw-r--r--
2022-04-12 11:11
status.rb
2.19
KB
-rw-r--r--
2022-04-12 11:11
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 # for compatibility Net::HTTPClientException = Net::HTTPServerException class Net::HTTPFatalError < Net::ProtoFatalError include Net::HTTPExceptions end module Net deprecate_constant(:HTTPServerException) end