Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.226
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby21 /
lib64 /
ruby /
2.1.0 /
drb /
[ HOME SHELL ]
Name
Size
Permission
Action
acl.rb
4.65
KB
-rw-r--r--
drb.rb
55.4
KB
-rw-r--r--
eq.rb
244
B
-rw-r--r--
extserv.rb
1.2
KB
-rw-r--r--
extservm.rb
1.71
KB
-rw-r--r--
gw.rb
2.97
KB
-rw-r--r--
invokemethod.rb
746
B
-rw-r--r--
observer.rb
636
B
-rw-r--r--
ssl.rb
11.51
KB
-rw-r--r--
timeridconv.rb
2.11
KB
-rw-r--r--
unix.rb
2.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : extserv.rb
=begin external service Copyright (c) 2000,2002 Masatoshi SEKI =end require 'drb/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 # :stopdoc: if __FILE__ == $0 class Foo include DRbUndumped def initialize(str) @str = str end def hello(it) "#{it}: #{self}" end def to_s @str end end cmd = ARGV.shift case cmd when 'itest1', 'itest2' front = Foo.new(cmd) manager = DRb::DRbServer.new(nil, front) es = DRb::ExtServ.new(ARGV.shift, ARGV.shift, manager) es.server.thread.join end end
Close