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 /
csv /
Delete
Unzip
Name
Size
Permission
Date
Action
core_ext
[ DIR ]
drwxr-xr-x
2026-05-05 23:07
delete_suffix.rb
374
B
-rw-r--r--
2026-04-07 17:42
fields_converter.rb
2.56
KB
-rw-r--r--
2026-04-07 17:42
input_record_separator.rb
277
B
-rw-r--r--
2026-04-07 17:42
match_p.rb
377
B
-rw-r--r--
2026-04-07 17:42
parser.rb
36.7
KB
-rw-r--r--
2026-04-07 17:42
row.rb
24.19
KB
-rw-r--r--
2026-04-07 17:42
table.rb
37.27
KB
-rw-r--r--
2026-04-07 17:42
version.rb
107
B
-rw-r--r--
2026-04-07 17:42
writer.rb
5.87
KB
-rw-r--r--
2026-04-07 17:42
Save
Rename
# frozen_string_literal: true # This provides String#match? and Regexp#match? for Ruby 2.3. unless String.method_defined?(:match?) class CSV module MatchP refine String do def match?(pattern) self =~ pattern end end refine Regexp do def match?(string) self =~ string end end end end end