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.222
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ri /
system /
Psych /
Delete
Unzip
Name
Size
Permission
Date
Action
AliasesNotEnabled
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
AnchorNotDefined
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
BadAlias
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
ClassLoader
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Coder
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Config
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
DisallowedClass
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Emitter
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Exception
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Handler
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Handlers
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
JSON
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Nodes
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Omap
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Parser
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
ScalarScanner
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Set
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Stream
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Streaming
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
SyntaxError
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
TreeBuilder
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
Visitors
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
cdesc-Psych.ri
11.02
KB
-rw-r--r--
2026-04-07 16:51
dump-c.ri
2.33
KB
-rw-r--r--
2026-04-07 16:51
dump_stream-c.ri
524
B
-rw-r--r--
2026-04-07 16:51
libyaml_version-c.ri
355
B
-rw-r--r--
2026-04-07 16:51
load-c.ri
1.76
KB
-rw-r--r--
2026-04-07 16:51
load_file-c.ri
543
B
-rw-r--r--
2026-04-07 16:51
load_stream-c.ri
866
B
-rw-r--r--
2026-04-07 16:51
parse-c.ri
1008
B
-rw-r--r--
2026-04-07 16:51
parse_file-c.ri
476
B
-rw-r--r--
2026-04-07 16:51
parse_stream-c.ri
1.39
KB
-rw-r--r--
2026-04-07 16:51
parser-c.ri
297
B
-rw-r--r--
2026-04-07 16:51
safe_dump-c.ri
3.22
KB
-rw-r--r--
2026-04-07 16:51
safe_load-c.ri
2.37
KB
-rw-r--r--
2026-04-07 16:51
safe_load_file-c.ri
565
B
-rw-r--r--
2026-04-07 16:51
to_json-c.ri
317
B
-rw-r--r--
2026-04-07 16:51
unsafe_load-c.ri
1.86
KB
-rw-r--r--
2026-04-07 16:51
unsafe_load_file-c.ri
758
B
-rw-r--r--
2026-04-07 16:51
Save
Rename
U:RDoc::AnyMethod[iI"safe_load:ETI"Psych::safe_load;TT:publico:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph; [I"LSafely load the yaml string in +yaml+. By default, only the following ;TI",classes are allowed to be deserialized:;To:RDoc::Markup::BlankLine o:RDoc::Markup::List: @type:BULLET:@items[ o:RDoc::Markup::ListItem:@label0; [o; ; [I"TrueClass;To;;0; [o; ; [I"FalseClass;To;;0; [o; ; [I" NilClass;To;;0; [o; ; [I"Integer;To;;0; [o; ; [I" Float;To;;0; [o; ; [I"String;To;;0; [o; ; [I" Array;To;;0; [o; ; [I" Hash;T@o; ; [I"NRecursive data structures are not allowed by default. Arbitrary classes ;TI"ccan be allowed by adding those classes to the +permitted_classes+ keyword argument. They are ;TI";additive. For example, to allow Date deserialization:;T@o:RDoc::Markup::Verbatim; [I"6Psych.safe_load(yaml, permitted_classes: [Date]) ;T:@format0o; ; [I"NNow the Date class can be loaded in addition to the classes listed above.;T@o; ; [I"SAliases can be explicitly allowed by changing the +aliases+ keyword argument. ;TI"For example:;T@o;; [ I"x = [] ;TI"x << x ;TI"yaml = Psych.dump x ;TI"APsych.safe_load yaml # => raises an exception ;TI"@Psych.safe_load yaml, aliases: true # => loads the aliases ;T;0o; ; [I"NA Psych::DisallowedClass exception will be raised if the yaml contains a ;TI"6class that isn't in the +permitted_classes+ list.;T@o; ; [I"VA Psych::AliasesNotEnabled exception will be raised if the yaml contains aliases ;TI"8but the +aliases+ keyword argument is set to false.;T@o; ; [I"Q+filename+ will be used in the exception message if any exception is raised ;TI"while parsing.;T@o; ; [I"FWhen the optional +symbolize_names+ keyword argument is set to a ;TI"Mtrue value, returns symbols for keys in Hash objects (default: strings).;T@o;; [I"SPsych.safe_load("---\n foo: bar") # => {"foo"=>"bar"} ;TI"QPsych.safe_load("---\n foo: bar", symbolize_names: true) # => {:foo=>"bar"};T;0: @fileI"ext/psych/lib/psych.rb;T:0@omit_headings_from_table_of_contents_below000[ I"�(yaml, permitted_classes: [], permitted_symbols: [], aliases: false, filename: nil, fallback: nil, symbolize_names: false, freeze: false, strict_integer: false);T@dFI" Psych;TcRDoc::NormalModule00