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.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
reline /
Delete
Unzip
Name
Size
Permission
Date
Action
io
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
key_actor
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
unicode
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
config.rb
10.16
KB
-rw-r--r--
2026-04-07 16:51
face.rb
4.79
KB
-rw-r--r--
2026-04-07 16:51
history.rb
1.89
KB
-rw-r--r--
2026-04-07 16:51
io.rb
1.1
KB
-rw-r--r--
2026-04-07 16:51
key_actor.rb
206
B
-rw-r--r--
2026-04-07 16:51
key_stroke.rb
3.21
KB
-rw-r--r--
2026-04-07 16:51
kill_ring.rb
2.37
KB
-rw-r--r--
2026-04-07 16:51
line_editor.rb
76.88
KB
-rw-r--r--
2026-04-07 16:51
unicode.rb
13
KB
-rw-r--r--
2026-04-07 16:51
version.rb
38
B
-rw-r--r--
2026-04-07 16:51
Save
Rename
module Reline class IO RESET_COLOR = "\e[0m" def self.decide_io_gate if ENV['TERM'] == 'dumb' Reline::Dumb.new else require 'reline/io/ansi' case RbConfig::CONFIG['host_os'] when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ require 'reline/io/windows' io = Reline::Windows.new if io.msys_tty? Reline::ANSI.new else io end else Reline::ANSI.new end end end def dumb? false end def win? false end def reset_color_sequence self.class::RESET_COLOR end # Read a single encoding valid character from the input. def read_single_char(keyseq_timeout) buffer = String.new(encoding: Encoding::ASCII_8BIT) loop do timeout = buffer.empty? ? Float::INFINITY : keyseq_timeout c = getc(timeout) return unless c buffer << c encoded = buffer.dup.force_encoding(encoding) return encoded if encoded.valid_encoding? end end end end require 'reline/io/dumb'