Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.38
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby27 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2023-03-30 09:34
fork.rb
638
B
-rw-r--r--
2023-03-30 09:34
help.rb
901
B
-rw-r--r--
2023-03-30 09:34
info.rb
559
B
-rw-r--r--
2023-03-30 09:34
load.rb
1.2
KB
-rw-r--r--
2023-03-30 09:34
nop.rb
545
B
-rw-r--r--
2023-03-30 09:34
pushws.rb
677
B
-rw-r--r--
2023-03-30 09:34
subirb.rb
661
B
-rw-r--r--
2023-03-30 09:34
Save
Rename
# frozen_string_literal: false require_relative "nop" # :stopdoc: module IRB module ExtendCommand class Info < Nop def execute Class.new { def inspect str = "Ruby version: #{RUBY_VERSION}\n" str += "IRB version: #{IRB.version}\n" str += "InputMethod: #{IRB.CurrentContext.io.inspect}\n" str += ".irbrc path: #{IRB.rc_file}\n" if File.exist?(IRB.rc_file) str end alias_method :to_s, :inspect }.new end end end end # :startdoc: