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.198
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ruby /
irb /
Delete
Unzip
Name
Size
Permission
Date
Action
cmd
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
ext
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
lc
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
color.rb
9.31
KB
-rw-r--r--
2026-04-07 17:42
color_printer.rb
1.08
KB
-rw-r--r--
2026-04-07 17:42
completion.rb
13.88
KB
-rw-r--r--
2026-04-07 17:42
context.rb
17.16
KB
-rw-r--r--
2026-04-07 17:42
easter-egg.rb
3.64
KB
-rw-r--r--
2026-04-07 17:42
extend-command.rb
12.32
KB
-rw-r--r--
2026-04-07 17:42
frame.rb
1.97
KB
-rw-r--r--
2026-04-07 17:42
help.rb
701
B
-rw-r--r--
2026-04-07 17:42
init.rb
12.09
KB
-rw-r--r--
2026-04-07 17:42
input-method.rb
13.11
KB
-rw-r--r--
2026-04-07 17:42
inspector.rb
3.69
KB
-rw-r--r--
2026-04-07 17:42
locale.rb
4.81
KB
-rw-r--r--
2026-04-07 17:42
magic-file.rb
928
B
-rw-r--r--
2026-04-07 17:42
notifier.rb
7.24
KB
-rw-r--r--
2026-04-07 17:42
output-method.rb
2.44
KB
-rw-r--r--
2026-04-07 17:42
ruby-lex.rb
25.4
KB
-rw-r--r--
2026-04-07 17:42
ruby_logo.aa
2.32
KB
-rw-r--r--
2026-04-07 17:42
src_encoding.rb
147
B
-rw-r--r--
2026-04-07 17:42
version.rb
296
B
-rw-r--r--
2026-04-07 17:42
workspace.rb
5.27
KB
-rw-r--r--
2026-04-07 17:42
ws-for-case-2.rb
218
B
-rw-r--r--
2026-04-07 17:42
xmp.rb
4.03
KB
-rw-r--r--
2026-04-07 17:42
Save
Rename
# frozen_string_literal: false module IRB class << (MagicFile = Object.new) # see parser_magic_comment in parse.y ENCODING_SPEC_RE = %r"coding\s*[=:]\s*([[:alnum:]\-_]+)" def open(path) io = File.open(path, 'rb') line = io.gets line = io.gets if line[0,2] == "#!" encoding = detect_encoding(line) internal_encoding = encoding encoding ||= IRB.default_src_encoding io.rewind io.set_encoding(encoding, internal_encoding) if block_given? begin return (yield io) ensure io.close end else return io end end private def detect_encoding(line) return unless line[0] == ?# line = line[1..-1] line = $1 if line[/-\*-\s*(.*?)\s*-*-$/] return nil unless ENCODING_SPEC_RE =~ line encoding = $1 return encoding.sub(/-(?:mac|dos|unix)/i, '') end end end