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.137.169.218
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby23 /
lib64 /
ruby /
2.3.0 /
uri /
Delete
Unzip
Name
Size
Permission
Date
Action
common.rb
19.44
KB
-rw-r--r--
2015-12-16 05:07
ftp.rb
7.09
KB
-rw-r--r--
2015-12-16 05:07
generic.rb
35.58
KB
-rw-r--r--
2016-09-25 21:33
http.rb
2.92
KB
-rw-r--r--
2016-04-12 05:27
https.rb
611
B
-rw-r--r--
2015-12-16 05:07
ldap.rb
5.77
KB
-rw-r--r--
2015-12-16 05:07
ldaps.rb
501
B
-rw-r--r--
2015-12-16 05:07
mailto.rb
7.88
KB
-rw-r--r--
2017-03-27 11:13
rfc2396_parser.rb
17.38
KB
-rw-r--r--
2015-12-16 05:07
rfc3986_parser.rb
6.2
KB
-rw-r--r--
2015-12-16 05:07
Save
Rename
# frozen_string_literal: false # = uri/https.rb # # Author:: Akira Yamada <akira@ruby-lang.org> # License:: You can redistribute it and/or modify it under the same term as Ruby. # Revision:: $Id: https.rb 53141 2015-12-16 05:07:31Z naruse $ # # See URI for general documentation # require 'uri/http' module URI # The default port for HTTPS URIs is 443, and the scheme is 'https:' rather # than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs; # see URI::HTTP. class HTTPS < HTTP # A Default port of 443 for URI::HTTPS DEFAULT_PORT = 443 end @@schemes['HTTPS'] = HTTPS end