Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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.1.0 /
drb /
Delete
Unzip
Name
Size
Permission
Date
Action
acl.rb
4.61
KB
-rw-r--r--
2022-04-12 11:11
drb.rb
57.49
KB
-rw-r--r--
2022-04-12 11:11
eq.rb
275
B
-rw-r--r--
2022-04-12 11:11
extserv.rb
836
B
-rw-r--r--
2022-04-12 11:11
extservm.rb
1.75
KB
-rw-r--r--
2022-04-12 11:11
gw.rb
3
KB
-rw-r--r--
2022-04-12 11:11
invokemethod.rb
777
B
-rw-r--r--
2022-04-12 11:11
observer.rb
671
B
-rw-r--r--
2022-04-12 11:11
ssl.rb
11.52
KB
-rw-r--r--
2022-04-12 11:11
timeridconv.rb
2.16
KB
-rw-r--r--
2022-04-12 11:11
unix.rb
2.78
KB
-rw-r--r--
2022-04-12 11:11
version.rb
35
B
-rw-r--r--
2022-04-12 11:11
weakidconv.rb
1.12
KB
-rw-r--r--
2022-04-12 11:11
Save
Rename
# frozen_string_literal: false =begin external service Copyright (c) 2000,2002 Masatoshi SEKI =end require_relative 'drb' require 'monitor' module DRb class ExtServ include MonitorMixin include DRbUndumped def initialize(there, name, server=nil) super() @server = server || DRb::primary_server @name = name ro = DRbObject.new(nil, there) synchronize do @invoker = ro.regist(name, DRbObject.new(self, @server.uri)) end end attr_reader :server def front DRbObject.new(nil, @server.uri) end def stop_service synchronize do @invoker.unregist(@name) server = @server @server = nil server.stop_service true end end def alive? @server ? @server.alive? : false end end end