Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2024-06-26 17:25
fork.rb
642
B
-rw-r--r--
2024-06-26 17:25
help.rb
901
B
-rw-r--r--
2024-06-26 17:25
info.rb
614
B
-rw-r--r--
2024-06-26 17:25
load.rb
1.2
KB
-rw-r--r--
2024-06-26 17:25
ls.rb
2.39
KB
-rw-r--r--
2024-06-26 17:25
measure.rb
1.04
KB
-rw-r--r--
2024-06-26 17:25
nop.rb
796
B
-rw-r--r--
2024-06-26 17:25
pushws.rb
677
B
-rw-r--r--
2024-06-26 17:25
show_source.rb
2.91
KB
-rw-r--r--
2024-06-26 17:25
subirb.rb
661
B
-rw-r--r--
2024-06-26 17:25
whereami.rb
362
B
-rw-r--r--
2024-06-26 17:25
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: