Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.217.200.151
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ruby /
drb /
Delete
Unzip
Name
Size
Permission
Date
Action
acl.rb
4.61
KB
-rw-r--r--
2023-03-30 12:34
drb.rb
57.64
KB
-rw-r--r--
2023-03-30 12:34
eq.rb
275
B
-rw-r--r--
2023-03-30 12:34
extserv.rb
836
B
-rw-r--r--
2023-03-30 12:34
extservm.rb
1.75
KB
-rw-r--r--
2023-03-30 12:34
gw.rb
3
KB
-rw-r--r--
2023-03-30 12:34
invokemethod.rb
777
B
-rw-r--r--
2023-03-30 12:34
observer.rb
667
B
-rw-r--r--
2023-03-30 12:34
ssl.rb
11.54
KB
-rw-r--r--
2023-03-30 12:34
timeridconv.rb
2.16
KB
-rw-r--r--
2023-03-30 12:34
unix.rb
2.78
KB
-rw-r--r--
2023-03-30 12:34
weakidconv.rb
1.12
KB
-rw-r--r--
2023-03-30 12:34
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