Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
3.0.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2021-07-07 19:08
fork.rb
642
B
-rw-r--r--
2021-07-07 19:08
help.rb
901
B
-rw-r--r--
2021-07-07 19:08
info.rb
614
B
-rw-r--r--
2021-07-07 19:08
load.rb
1.2
KB
-rw-r--r--
2021-07-07 19:08
ls.rb
2.39
KB
-rw-r--r--
2021-07-07 19:08
measure.rb
1.04
KB
-rw-r--r--
2021-07-07 19:08
nop.rb
796
B
-rw-r--r--
2021-07-07 19:08
pushws.rb
677
B
-rw-r--r--
2021-07-07 19:08
show_source.rb
2.91
KB
-rw-r--r--
2021-07-07 19:08
subirb.rb
661
B
-rw-r--r--
2021-07-07 19:08
whereami.rb
362
B
-rw-r--r--
2021-07-07 19:08
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 += "RUBY_PLATFORM: #{RUBY_PLATFORM}\n" str end alias_method :to_s, :inspect }.new end end end end # :startdoc: