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.204
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 /
IO /
All /
Delete
Unzip
Name
Size
Permission
Date
Action
Base.pm
4.65
KB
-rw-rw-rw-
2017-07-19 01:05
DBM.pm
2.56
KB
-rw-rw-rw-
2017-07-19 01:05
DBM.pod
266
B
-rw-rw-rw-
2017-07-19 01:05
Dir.pm
5.38
KB
-rw-rw-rw-
2017-07-19 01:05
Dir.pod
272
B
-rw-rw-rw-
2017-07-19 01:05
File.pm
6.27
KB
-rw-rw-rw-
2017-07-19 01:05
File.pod
268
B
-rw-rw-rw-
2017-07-19 01:05
Filesys.pm
2.67
KB
-rw-rw-rw-
2017-07-19 01:05
Filesys.pod
284
B
-rw-rw-rw-
2017-07-19 01:05
Link.pm
1.15
KB
-rw-rw-rw-
2017-07-19 01:05
Link.pod
268
B
-rw-rw-rw-
2017-07-19 01:05
MLDBM.pm
986
B
-rw-rw-rw-
2017-07-19 01:05
MLDBM.pod
270
B
-rw-rw-rw-
2017-07-19 01:05
Pipe.pm
1.18
KB
-rw-rw-rw-
2017-07-19 01:05
Pipe.pod
268
B
-rw-rw-rw-
2017-07-19 01:05
STDIO.pm
916
B
-rw-rw-rw-
2017-07-19 01:05
STDIO.pod
270
B
-rw-rw-rw-
2017-07-19 01:05
Socket.pm
3.03
KB
-rw-rw-rw-
2017-07-19 01:05
Socket.pod
272
B
-rw-rw-rw-
2017-07-19 01:05
String.pm
528
B
-rw-rw-rw-
2017-07-19 01:05
String.pod
272
B
-rw-rw-rw-
2017-07-19 01:05
Temp.pm
368
B
-rw-rw-rw-
2017-07-19 01:05
Temp.pod
278
B
-rw-rw-rw-
2017-07-19 01:05
Save
Rename
use strict; use warnings; package IO::All::Pipe; use IO::All -base; use IO::File; const type => 'pipe'; sub pipe { my $self = shift; bless $self, __PACKAGE__; $self->name(shift) if @_; return $self->_init; } sub _assert_open { my $self = shift; return if $self->is_open; $self->mode(shift) unless $self->mode; $self->open; } sub open { my $self = shift; $self->is_open(1); require IO::Handle; $self->io_handle(IO::Handle->new) unless defined $self->io_handle; my $command = $self->name; $command =~ s/(^\||\|$)//; my $mode = shift || $self->mode || '<'; my $pipe_mode = $mode eq '>' ? '|-' : $mode eq '<' ? '-|' : $self->throw("Invalid usage mode '$mode' for pipe"); CORE::open($self->io_handle, $pipe_mode, $command); $self->_set_binmode; } my %mode_msg = ( '>' => 'output', '<' => 'input', '>>' => 'append', ); sub open_msg { my $self = shift; my $name = defined $self->name ? " '" . $self->name . "'" : ''; my $direction = defined $mode_msg{$self->mode} ? ' for ' . $mode_msg{$self->mode} : ''; return qq{Can't open pipe$name$direction:\n$!}; } 1;