Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
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