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 /
Win32 /
Exe /
ResourceEntry /
[ HOME SHELL ]
Name
Size
Permission
Action
Id.pm
1.11
KB
-rw-rw-rw-
Name.pm
855
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Id.pm
# Copyright 2004 by Audrey Tang <cpan@audreyt.org> package Win32::Exe::ResourceEntry::Id; use strict; use base 'Win32::Exe::ResourceEntry'; use constant SUBFORMAT => ( Id => 'V', ); use constant RESOURCE_TYPES => [qw( _ CURSOR BITMAP ICON MENU DIALOG STRING FONTDIR FONT ACCELERATOR RCDATA MESSAGETABLE GROUP_CURSOR _ GROUP_ICON _ VERSION DLGINCLUDE _ PLUGPLAY VXD ANICURSOR ANIICON HTML MANIFEST )]; use constant RT_TO_ID => { map { ('RT_'.RESOURCE_TYPES->[$_] => $_) } (0 .. $#{+RESOURCE_TYPES}) }; use constant ID_TO_RT => { reverse %{+RT_TO_ID} }; sub Name { my ($self) = @_; my $id = $_[0]->Id; $id = $self->id_to_rt($id) if $self->parent->depth < 1; return "#$id"; } sub SetName { my ($self, $name) = @_; $name =~ s/^#//; $self->SetId( $self->rt_to_id($name) ); } sub id_to_rt { my ($self, $id) = @_; return(+ID_TO_RT->{$id} || $id); } sub rt_to_id { my ($self, $rt) = @_; return(+RT_TO_ID->{$rt} || $rt); } 1;
Close