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.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
lib /
URI /
file /
Delete
Unzip
Name
Size
Permission
Date
Action
Base.pm
1.45
KB
-rw-rw-rw-
2021-01-14 18:01
FAT.pm
497
B
-rw-rw-rw-
2021-01-14 18:01
Mac.pm
2.43
KB
-rw-rw-rw-
2021-01-14 18:01
OS2.pm
561
B
-rw-rw-rw-
2021-01-14 18:01
QNX.pm
337
B
-rw-rw-rw-
2021-01-14 18:01
Unix.pm
1022
B
-rw-rw-rw-
2021-01-14 18:01
Win32.pm
1.72
KB
-rw-rw-rw-
2021-01-14 18:01
Save
Rename
package URI::file::Unix; use strict; use warnings; use parent 'URI::file::Base'; use URI::Escape qw(uri_unescape); our $VERSION = '5.06'; sub _file_extract_path { my($class, $path) = @_; # tidy path $path =~ s,//+,/,g; $path =~ s,(/\.)+/,/,g; $path = "./$path" if $path =~ m,^[^:/]+:,,; # look like "scheme:" return $path; } sub _file_is_absolute { my($class, $path) = @_; return $path =~ m,^/,; } sub file { my $class = shift; my $uri = shift; my @path; my $auth = $uri->authority; if (defined($auth)) { if (lc($auth) ne "localhost" && $auth ne "") { $auth = uri_unescape($auth); unless ($class->_file_is_localhost($auth)) { push(@path, "", "", $auth); } } } my @ps = $uri->path_segments; shift @ps if @path; push(@path, @ps); for (@path) { # Unix file/directory names are not allowed to contain '\0' or '/' return undef if /\0/; return undef if /\//; # should we really? } return join("/", @path); } 1;