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 /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxrwxrwx
Console
[ DIR ]
drwxrwxrwx
Exe
[ DIR ]
drwxrwxrwx
File
[ DIR ]
drwxrwxrwx
GuiTest
[ DIR ]
drwxrwxrwx
OLE
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
API.pm
50.44
KB
-rw-rw-rw-
Clipboard.pm
7.87
KB
-rw-rw-rw-
Console.pm
36.88
KB
-rw-rw-rw-
DBIODBC.pm
4.43
KB
-rw-rw-rw-
Daemon.pm
35.61
KB
-rw-rw-rw-
EventLog.pm
12.77
KB
-rw-rw-rw-
Exe.pm
23.46
KB
-rw-rw-rw-
File.pm
1.83
KB
-rw-rw-rw-
GuiTest.pm
49.81
KB
-rw-rw-rw-
IPHelper.pm
74.36
KB
-rw-rw-rw-
Job.pm
10.09
KB
-rw-rw-rw-
OLE.pm
33.38
KB
-rw-rw-rw-
Pipe.pm
10.29
KB
-rw-rw-rw-
Process.pm
5.52
KB
-rw-rw-rw-
SerialPort.pm
89.02
KB
-rw-rw-rw-
Service.pm
2.15
KB
-rw-rw-rw-
ServiceManager.pm
17.64
KB
-rw-rw-rw-
ShellQuote.pm
5.84
KB
-rw-rw-rw-
TieRegistry.pm
120.32
KB
-rw-rw-rw-
UTCFileTime.pm
64.28
KB
-rw-rw-rw-
WinError.pm
23.08
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : File.pm
package Win32::File; # # File.pm # Written by Douglas_Lankshear@ActiveWare.com # # subsequent hacks: # Gurusamy Sarathy # $VERSION = '0.07'; require Exporter; require DynaLoader; @ISA= qw( Exporter DynaLoader ); @EXPORT = qw( ARCHIVE COMPRESSED DIRECTORY HIDDEN NORMAL OFFLINE READONLY SYSTEM TEMPORARY ); @EXPORT_OK = qw(GetAttributes SetAttributes); =head1 NAME Win32::File - Manage file attributes in perl =head1 SYNOPSIS use Win32::File; =head1 DESCRIPTION This module offers the retrieval and setting of file attributes. =head1 Functions =head2 NOTE All of the functions return FALSE (0) if they fail, unless otherwise noted. The function names are exported into the caller's namespace by request. =over 10 =item GetAttributes(filename, returnedAttributes) Gets the attributes of a file or directory. returnedAttributes will be set to the OR-ed combination of the filename attributes. =item SetAttributes(filename, newAttributes) Sets the attributes of a file or directory. newAttributes must be an OR-ed combination of the attributes. =back =head1 Constants The following constants are exported by default. =over 10 =item ARCHIVE =item COMPRESSED =item DIRECTORY =item HIDDEN =item NORMAL =item OFFLINE =item READONLY =item SYSTEM =item TEMPORARY =back =cut sub AUTOLOAD { my($constname); ($constname = $AUTOLOAD) =~ s/.*:://; #reset $! to zero to reset any current errors. local $! = 0; my $val = constant($constname); if($! != 0) { if($! =~ /Invalid/) { $AutoLoader::AUTOLOAD = $AUTOLOAD; goto &AutoLoader::AUTOLOAD; } else { ($pack,$file,$line) = caller; die "Your vendor has not defined Win32::File macro $constname, used in $file at line $line."; } } eval "sub $AUTOLOAD { $val }"; goto &$AUTOLOAD; } bootstrap Win32::File; 1; __END__
Close