Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
share /
perl /
5.22.1 /
YAML /
Delete
Unzip
Name
Size
Permission
Date
Action
Dumper
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
Loader
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
Any.pm
2.6
KB
-r--r--r--
2017-02-19 22:08
Any.pod
2.82
KB
-r--r--r--
2017-02-19 22:08
Dumper.pm
16.66
KB
-r--r--r--
2017-02-19 22:08
Dumper.pod
776
B
-r--r--r--
2017-02-19 22:08
Error.pm
5.63
KB
-r--r--r--
2017-02-19 22:08
Error.pod
666
B
-r--r--r--
2017-02-19 22:08
Loader.pm
23.88
KB
-r--r--r--
2017-02-19 22:08
Loader.pod
767
B
-r--r--r--
2017-02-19 22:08
Marshall.pm
867
B
-r--r--r--
2017-02-19 22:08
Marshall.pod
656
B
-r--r--r--
2017-02-19 22:08
Mo.pm
3.24
KB
-r--r--r--
2017-02-19 22:08
Node.pm
4.32
KB
-r--r--r--
2017-02-19 22:08
Node.pod
2.48
KB
-r--r--r--
2017-02-19 22:08
Tag.pm
216
B
-r--r--r--
2017-02-19 22:08
Tag.pod
538
B
-r--r--r--
2017-02-19 22:08
Types.pm
6.19
KB
-r--r--r--
2017-02-19 22:08
Types.pod
738
B
-r--r--r--
2017-02-19 22:08
Save
Rename
use strict; use warnings; package YAML::Any; our $VERSION = '1.23'; use Exporter (); @YAML::Any::ISA = 'Exporter'; @YAML::Any::EXPORT = qw(Dump Load); @YAML::Any::EXPORT_OK = qw(DumpFile LoadFile); my @dump_options = qw( UseCode DumpCode SpecVersion Indent UseHeader UseVersion SortKeys AnchorPrefix UseBlock UseFold CompressSeries InlineSeries UseAliases Purity Stringify ); my @load_options = qw( UseCode LoadCode Preserve ); my @implementations = qw( YAML::XS YAML::Syck YAML::Old YAML YAML::Tiny ); sub import { __PACKAGE__->implementation; goto &Exporter::import; } sub Dump { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@dump_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::Dump"}(@_); } sub DumpFile { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@dump_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::DumpFile"}(@_); } sub Load { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@load_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::Load"}(@_); } sub LoadFile { no strict 'refs'; no warnings 'once'; my $implementation = __PACKAGE__->implementation; for my $option (@load_options) { my $var = "$implementation\::$option"; my $value = $$var; local $$var; $$var = defined $value ? $value : ${"YAML::$option"}; } return &{"$implementation\::LoadFile"}(@_); } sub order { return @YAML::Any::_TEST_ORDER if @YAML::Any::_TEST_ORDER; return @implementations; } sub implementation { my @order = __PACKAGE__->order; for my $module (@order) { my $path = $module; $path =~ s/::/\//g; $path .= '.pm'; return $module if exists $INC{$path}; eval "require $module; 1" and return $module; } croak("YAML::Any couldn't find any of these YAML implementations: @order"); } sub croak { require Carp; Carp::croak(@_); } 1;