Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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.1.0 /
irb /
Delete
Unzip
Name
Size
Permission
Date
Action
cmd
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
ext
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
lc
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
color.rb
8.42
KB
-rw-r--r--
2022-04-12 11:11
color_printer.rb
995
B
-rw-r--r--
2022-04-12 11:11
completion.rb
12.81
KB
-rw-r--r--
2022-04-12 11:11
context.rb
15.85
KB
-rw-r--r--
2022-04-12 11:11
easter-egg.rb
3.64
KB
-rw-r--r--
2022-04-12 11:11
extend-command.rb
10.67
KB
-rw-r--r--
2022-04-12 11:11
frame.rb
1.97
KB
-rw-r--r--
2022-04-12 11:11
help.rb
701
B
-rw-r--r--
2022-04-12 11:11
init.rb
11.37
KB
-rw-r--r--
2022-04-12 11:11
input-method.rb
12.71
KB
-rw-r--r--
2022-04-12 11:11
inspector.rb
3.85
KB
-rw-r--r--
2022-04-12 11:11
locale.rb
4.81
KB
-rw-r--r--
2022-04-12 11:11
magic-file.rb
928
B
-rw-r--r--
2022-04-12 11:11
notifier.rb
7.24
KB
-rw-r--r--
2022-04-12 11:11
output-method.rb
2.44
KB
-rw-r--r--
2022-04-12 11:11
ruby-lex.rb
24.95
KB
-rw-r--r--
2022-04-12 11:11
ruby_logo.aa
2.32
KB
-rw-r--r--
2022-04-12 11:11
src_encoding.rb
147
B
-rw-r--r--
2022-04-12 11:11
version.rb
296
B
-rw-r--r--
2022-04-12 11:11
workspace.rb
5.58
KB
-rw-r--r--
2022-04-12 11:11
ws-for-case-2.rb
218
B
-rw-r--r--
2022-04-12 11:11
xmp.rb
4.03
KB
-rw-r--r--
2022-04-12 11:11
Save
Rename
# frozen_string_literal: true require 'pp' require 'irb/color' module IRB class ColorPrinter < ::PP class << self def pp(obj, out = $>, width = screen_width) q = ColorPrinter.new(out, width) q.guard_inspect_key {q.pp obj} q.flush out << "\n" end private def screen_width Reline.get_screen_size.last rescue Errno::EINVAL # in `winsize': Invalid argument - <STDIN> 79 end end def pp(obj) if obj.is_a?(String) # Avoid calling Ruby 2.4+ String#pretty_print that splits a string by "\n" text(obj.inspect) else super end end def text(str, width = nil) unless str.is_a?(String) str = str.inspect end width ||= str.length case str when /\A#</, '=', '>' super(Color.colorize(str, [:GREEN]), width) else super(Color.colorize_code(str, ignore_error: true), width) end end end end