Linux premium134.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.104 | : 216.73.216.51
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby40 /
share /
gems /
gems /
drb-2.2.3 /
lib /
drb /
[ HOME SHELL ]
Name
Size
Permission
Action
acl.rb
4.61
KB
-rw-r--r--
drb.rb
58.76
KB
-rw-r--r--
eq.rb
275
B
-rw-r--r--
extserv.rb
840
B
-rw-r--r--
extservm.rb
1.8
KB
-rw-r--r--
gw.rb
3
KB
-rw-r--r--
observer.rb
671
B
-rw-r--r--
ssl.rb
11.91
KB
-rw-r--r--
timeridconv.rb
2.16
KB
-rw-r--r--
unix.rb
2.78
KB
-rw-r--r--
version.rb
35
B
-rw-r--r--
weakidconv.rb
784
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : weakidconv.rb
# frozen_string_literal: false require_relative 'drb' module DRb # DRb::WeakIdConv is deprecated since 2.2.1. You don't need to use # DRb::WeakIdConv instead of DRb::DRbIdConv. It's the same class. # # This file still exists for backward compatibility. # # To use WeakIdConv: # # DRb.start_service(nil, nil, {:idconv => DRb::WeakIdConv.new}) def self.const_missing(name) # :nodoc: case name when :WeakIdConv warn("DRb::WeakIdConv is deprecated. " + "You can use the DRb::DRbIdConv. " + "You don't need to use this.", uplevel: 1) const_set(:WeakIdConv, DRbIdConv) singleton_class.remove_method(:const_missing) DRbIdConv else super end end end # DRb.install_id_conv(WeakIdConv.new)
Close