Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby24 /
lib64 /
ruby /
2.4.0 /
psych /
nodes /
Delete
Unzip
Name
Size
Permission
Date
Action
alias.rb
495
B
-rw-r--r--
2023-07-26 14:58
document.rb
1.78
KB
-rw-r--r--
2023-07-26 14:58
mapping.rb
1.51
KB
-rw-r--r--
2023-07-26 14:58
node.rb
1.26
KB
-rw-r--r--
2023-07-26 14:58
scalar.rb
1.6
KB
-rw-r--r--
2023-07-26 14:58
sequence.rb
2
KB
-rw-r--r--
2023-07-26 14:58
stream.rb
996
B
-rw-r--r--
2023-07-26 14:58
Save
Rename
# frozen_string_literal: false module Psych module Nodes ### # This class represents a {YAML Alias}[http://yaml.org/spec/1.1/#alias]. # It points to an +anchor+. # # A Psych::Nodes::Alias is a terminal node and may have no children. class Alias < Psych::Nodes::Node # The anchor this alias links to attr_accessor :anchor # Create a new Alias that points to an +anchor+ def initialize anchor @anchor = anchor end end end end