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::String; use IO::All -base; const type => 'string'; sub string_ref { my ($self, $ref) = @_; no strict 'refs'; *$self->{ref} = $ref if exists $_[1]; return *$self->{ref} } sub string { my $self = shift; bless $self, __PACKAGE__; $self->_init; } sub open { my $self = shift; my $str = ''; my $ref = \$str; $self->string_ref($ref); open my $fh, '+<', $ref; $self->io_handle($fh); $self->_set_binmode; $self->is_open(1); } 1;