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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Digest
[ DIR ]
drwxrwxr-x
2017-10-05 13:57
IO
[ DIR ]
drwxr-xr-x
2017-10-05 13:57
Mail
[ DIR ]
drwxr-xr-x
2017-10-05 13:57
Module
[ DIR ]
drwxr-xr-x
2017-10-05 13:56
Net
[ DIR ]
drwxrwxr-x
2017-10-05 13:57
Spiffy
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
Sys
[ DIR ]
drwxrwxr-x
2017-10-05 14:02
Test
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
Text
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
YAML
[ DIR ]
drwxrwxr-x
2017-10-05 13:55
Spiffy.pm
15.12
KB
-r--r--r--
2014-08-16 21:19
Spiffy.pod
17.75
KB
-r--r--r--
2014-08-16 21:19
YAML.pm
3.06
KB
-r--r--r--
2017-02-19 22:08
YAML.pod
22.1
KB
-r--r--r--
2017-02-19 22:08
Save
Rename
package YAML; our $VERSION = '1.23'; use YAML::Mo; use Exporter; push @YAML::ISA, 'Exporter'; our @EXPORT = qw{ Dump Load }; our @EXPORT_OK = qw{ freeze thaw DumpFile LoadFile Bless Blessed }; our ( $UseCode, $DumpCode, $LoadCode, $SpecVersion, $UseHeader, $UseVersion, $UseBlock, $UseFold, $UseAliases, $Indent, $SortKeys, $Preserve, $AnchorPrefix, $CompressSeries, $InlineSeries, $Purity, $Stringify, $Numify ); use YAML::Node; # XXX This is a temp fix for Module::Build use Scalar::Util qw/ openhandle /; # XXX This VALUE nonsense needs to go. use constant VALUE => "\x07YAML\x07VALUE\x07"; # YAML Object Properties has dumper_class => default => sub {'YAML::Dumper'}; has loader_class => default => sub {'YAML::Loader'}; has dumper_object => default => sub {$_[0]->init_action_object("dumper")}; has loader_object => default => sub {$_[0]->init_action_object("loader")}; sub Dump { my $yaml = YAML->new; $yaml->dumper_class($YAML::DumperClass) if $YAML::DumperClass; return $yaml->dumper_object->dump(@_); } sub Load { my $yaml = YAML->new; $yaml->loader_class($YAML::LoaderClass) if $YAML::LoaderClass; return $yaml->loader_object->load(@_); } { no warnings 'once'; # freeze/thaw is the API for Storable string serialization. Some # modules make use of serializing packages on if they use freeze/thaw. *freeze = \ &Dump; *thaw = \ &Load; } sub DumpFile { my $OUT; my $filename = shift; if (openhandle $filename) { $OUT = $filename; } else { my $mode = '>'; if ($filename =~ /^\s*(>{1,2})\s*(.*)$/) { ($mode, $filename) = ($1, $2); } open $OUT, $mode, $filename or YAML::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT', $filename, "$!"); } binmode $OUT, ':utf8'; # if $Config{useperlio} eq 'define'; local $/ = "\n"; # reset special to "sane" print $OUT Dump(@_); unless (ref $filename eq 'GLOB') { close $OUT or do { my $errsav = $!; YAML::Mo::Object->die('YAML_DUMP_ERR_FILE_OUTPUT_CLOSE', $filename, $errsav); } } } sub LoadFile { my $IN; my $filename = shift; if (openhandle $filename) { $IN = $filename; } else { open $IN, '<', $filename or YAML::Mo::Object->die('YAML_LOAD_ERR_FILE_INPUT', $filename, "$!"); } binmode $IN, ':utf8'; # if $Config{useperlio} eq 'define'; return Load(do { local $/; <$IN> }); } sub init_action_object { my $self = shift; my $object_class = (shift) . '_class'; my $module_name = $self->$object_class; eval "require $module_name"; $self->die("Error in require $module_name - $@") if $@ and "$@" !~ /Can't locate/; my $object = $self->$object_class->new; $object->set_global_options; return $object; } my $global = {}; sub Bless { require YAML::Dumper::Base; YAML::Dumper::Base::bless($global, @_) } sub Blessed { require YAML::Dumper::Base; YAML::Dumper::Base::blessed($global, @_) } sub global_object { $global } 1;