Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
YAML /
Delete
Unzip
Name
Size
Permission
Date
Action
Dumper
[ DIR ]
drwxr-xr-x
2024-02-12 23:51
Loader
[ DIR ]
drwxr-xr-x
2024-02-12 23:51
Any.pm
2.6
KB
-r--r--r--
2017-10-30 19:32
Any.pod
2.82
KB
-r--r--r--
2017-10-30 19:32
Dumper.pm
16.66
KB
-r--r--r--
2017-10-30 19:32
Dumper.pod
776
B
-r--r--r--
2017-10-30 19:32
Error.pm
5.63
KB
-r--r--r--
2017-10-30 19:32
Error.pod
666
B
-r--r--r--
2017-10-30 19:32
Loader.pm
23.93
KB
-r--r--r--
2017-10-30 19:32
Loader.pod
767
B
-r--r--r--
2017-10-30 19:32
Marshall.pm
867
B
-r--r--r--
2017-10-30 19:32
Marshall.pod
656
B
-r--r--r--
2017-10-30 19:32
Mo.pm
3.24
KB
-r--r--r--
2017-10-30 19:32
Node.pm
4.32
KB
-r--r--r--
2017-10-30 19:32
Node.pod
2.48
KB
-r--r--r--
2017-10-30 19:32
Tag.pm
216
B
-r--r--r--
2017-10-30 19:32
Tag.pod
538
B
-r--r--r--
2017-10-30 19:32
Tiny.pm
41.6
KB
-rw-r--r--
2018-02-21 21:08
Types.pm
6.19
KB
-r--r--r--
2017-10-30 19:32
Types.pod
738
B
-r--r--r--
2017-10-30 19:32
Save
Rename
use strict; use warnings; package YAML::Marshall; use YAML::Node (); sub import { my $class = shift; no strict 'refs'; my $package = caller; unless (grep { $_ eq $class} @{$package . '::ISA'}) { push @{$package . '::ISA'}, $class; } my $tag = shift; if ( $tag ) { no warnings 'once'; $YAML::TagClass->{$tag} = $package; ${$package . "::YamlTag"} = $tag; } } sub yaml_dump { my $self = shift; no strict 'refs'; my $tag = ${ref($self) . "::YamlTag"} || 'perl/' . ref($self); $self->yaml_node($self, $tag); } sub yaml_load { my ($class, $node) = @_; if (my $ynode = $class->yaml_ynode($node)) { $node = $ynode->{NODE}; } bless $node, $class; } sub yaml_node { shift; YAML::Node->new(@_); } sub yaml_ynode { shift; YAML::Node::ynode(@_); } 1;