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.171
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 /
irb /
cmd /
[ HOME SHELL ]
Name
Size
Permission
Action
chws.rb
486
B
-rw-r--r--
fork.rb
573
B
-rw-r--r--
help.rb
664
B
-rw-r--r--
load.rb
1.13
KB
-rw-r--r--
nop.rb
551
B
-rw-r--r--
pushws.rb
611
B
-rw-r--r--
subirb.rb
596
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : load.rb
# # load.rb - # $Release Version: 0.9.6$ # $Revision: 38358 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require "irb/cmd/nop.rb" require "irb/ext/loader" # :stopdoc: module IRB module ExtendCommand class Load<Nop include IrbLoader def execute(file_name, priv = nil) # return ruby_load(file_name) unless IRB.conf[:USE_LOADER] return irb_load(file_name, priv) end end class Require<Nop include IrbLoader def execute(file_name) # return ruby_require(file_name) unless IRB.conf[:USE_LOADER] rex = Regexp.new("#{Regexp.quote(file_name)}(\.o|\.rb)?") return false if $".find{|f| f =~ rex} case file_name when /\.rb$/ begin if irb_load(file_name) $".push file_name return true end rescue LoadError end when /\.(so|o|sl)$/ return ruby_require(file_name) end begin irb_load(f = file_name + ".rb") $".push f return true rescue LoadError return ruby_require(file_name) end end end class Source<Nop include IrbLoader def execute(file_name) source_file(file_name) end end end end # :startdoc:
Close