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.140
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 /
Win32 /
Exe /
Delete
Unzip
Name
Size
Permission
Date
Action
Manifest
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
PE
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Resource
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
ResourceEntry
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Section
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Base.pm
708
B
-rw-rw-rw-
2011-05-26 16:14
DataDirectory.pm
210
B
-rw-rw-rw-
2011-05-26 16:14
DebugDirectory.pm
359
B
-rw-rw-rw-
2011-05-26 16:14
DebugTable.pm
201
B
-rw-rw-rw-
2011-05-26 16:14
IconFile.pm
1.24
KB
-rw-rw-rw-
2011-05-26 16:14
InsertResourceSection.pm
3.89
KB
-rw-rw-rw-
2011-07-19 20:08
Manifest.pm
39.67
KB
-rw-rw-rw-
2011-05-26 16:14
PE.pm
475
B
-rw-rw-rw-
2011-05-26 16:14
Resource.pm
545
B
-rw-rw-rw-
2011-05-26 16:14
ResourceData.pm
1.11
KB
-rw-rw-rw-
2011-05-26 16:14
ResourceEntry.pm
1.25
KB
-rw-rw-rw-
2011-05-26 16:14
ResourceTable.pm
682
B
-rw-rw-rw-
2011-05-26 16:14
Section.pm
4.3
KB
-rw-rw-rw-
2011-05-26 16:14
Save
Rename
# Copyright 2004 by Audrey Tang <cpan@audreyt.org> package Win32::Exe::ResourceData; use strict; use base 'Win32::Exe::Base'; use constant FORMAT => ( VirtualAddress => 'V', Size => 'V', CodePage => 'V', ); sub Data { my ($self) = @_; return $self->{data} if defined $self->{data}; my $section = $self->first_parent('Resources'); my $addr = $self->VirtualAddress or return; return $section->substr( $addr - $section->VirtualAddress, $self->Size ); } sub SetData { my ($self, $data) = @_; $self->{data} = $data; } sub object { my ($self) = @_; return $self->{object}; } sub path { my ($self) = @_; return $self->parent->path; } sub initialize { my ($self) = @_; my ($base) = $self->path or return; $base =~ /^#RT_(?!ICON$)(\w+)$/ or return; $self->VirtualAddress or return; my $data = $self->Data; my $class = ucfirst(lc($1)); $class =~ s/_(\w)/\U$1/g; $class = $self->require_class("Resource::$class") or return; my $obj = $class->new(\$data, { parent => $self }); $obj->initialize; $self->{object} = $obj; } 1;