Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
2.3.0 /
net /
http /
Delete
Unzip
Name
Size
Permission
Date
Action
backward.rb
609
B
-rw-r--r--
2016-11-21 08:58
exceptions.rb
741
B
-rw-r--r--
2016-11-21 08:58
generic_request.rb
9.35
KB
-rw-r--r--
2016-11-21 08:58
header.rb
14.41
KB
-rw-r--r--
2016-11-21 08:58
proxy_delta.rb
272
B
-rw-r--r--
2016-11-21 08:58
request.rb
746
B
-rw-r--r--
2016-11-21 08:58
requests.rb
2.91
KB
-rw-r--r--
2016-11-21 08:58
response.rb
10.15
KB
-rw-r--r--
2016-11-21 08:58
responses.rb
8.61
KB
-rw-r--r--
2016-11-21 08:58
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