Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
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.0.0 /
drb /
Delete
Unzip
Name
Size
Permission
Date
Action
acl.rb
4.61
KB
-rw-r--r--
2021-07-07 19:08
drb.rb
57.49
KB
-rw-r--r--
2021-07-07 19:08
eq.rb
275
B
-rw-r--r--
2021-07-07 19:08
extserv.rb
836
B
-rw-r--r--
2021-07-07 19:08
extservm.rb
1.75
KB
-rw-r--r--
2021-07-07 19:08
gw.rb
3
KB
-rw-r--r--
2021-07-07 19:08
invokemethod.rb
777
B
-rw-r--r--
2021-07-07 19:08
observer.rb
671
B
-rw-r--r--
2021-07-07 19:08
ssl.rb
11.52
KB
-rw-r--r--
2021-07-07 19:08
timeridconv.rb
2.16
KB
-rw-r--r--
2021-07-07 19:08
unix.rb
2.78
KB
-rw-r--r--
2021-07-07 19:08
version.rb
35
B
-rw-r--r--
2021-07-07 19:08
weakidconv.rb
1.12
KB
-rw-r--r--
2021-07-07 19:08
Save
Rename
# frozen_string_literal: false # for ruby-1.8.0 module DRb # :nodoc: all class DRbServer module InvokeMethod18Mixin def block_yield(x) if x.size == 1 && x[0].class == Array x[0] = DRbArray.new(x[0]) end @block.call(*x) end def perform_with_block @obj.__send__(@msg_id, *@argv) do |*x| jump_error = nil begin block_value = block_yield(x) rescue LocalJumpError jump_error = $! end if jump_error case jump_error.reason when :break break(jump_error.exit_value) else raise jump_error end end block_value end end end end end