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.52
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 /
LWP /
Protocol /
Delete
Unzip
Name
Size
Permission
Date
Action
cpan.pm
1.33
KB
-rw-rw-rw-
2021-01-07 23:21
data.pm
1.2
KB
-rw-rw-rw-
2021-01-07 23:21
file.pm
3.75
KB
-rw-rw-rw-
2021-01-07 23:21
ftp.pm
18.69
KB
-rw-rw-rw-
2021-01-07 23:21
gopher.pm
5.59
KB
-rw-rw-rw-
2021-01-07 23:21
http.pm
14.76
KB
-rw-rw-rw-
2021-01-07 23:21
https.pm
6.73
KB
-rw-rw-rw-
2020-12-17 17:42
loopback.pm
586
B
-rw-rw-rw-
2021-01-07 23:21
mailto.pm
4.3
KB
-rw-rw-rw-
2021-01-07 23:21
nntp.pm
4.1
KB
-rw-rw-rw-
2021-01-07 23:21
nogo.pm
610
B
-rw-rw-rw-
2021-01-07 23:21
Save
Rename
package LWP::Protocol::cpan; use strict; use base qw(LWP::Protocol); our $VERSION = '6.52'; require URI; require HTTP::Status; require HTTP::Response; our $CPAN; unless ($CPAN) { # Try to find local CPAN mirror via $CPAN::Config eval { require CPAN::Config; if($CPAN::Config) { my $urls = $CPAN::Config->{urllist}; if (ref($urls) eq "ARRAY") { my $file; for (@$urls) { if (/^file:/) { $file = $_; last; } } if ($file) { $CPAN = $file; } else { $CPAN = $urls->[0]; } } } }; $CPAN ||= "http://cpan.org/"; # last resort } # ensure that we don't chop of last part $CPAN .= "/" unless $CPAN =~ m,/$,; sub request { my($self, $request, $proxy, $arg, $size) = @_; # check proxy if (defined $proxy) { return HTTP::Response->new(HTTP::Status::RC_BAD_REQUEST, 'You can not proxy with cpan'); } # check method my $method = $request->method; unless ($method eq 'GET' || $method eq 'HEAD') { return HTTP::Response->new(HTTP::Status::RC_BAD_REQUEST, 'Library does not allow method ' . "$method for 'cpan:' URLs"); } my $path = $request->uri->path; $path =~ s,^/,,; my $response = HTTP::Response->new(HTTP::Status::RC_FOUND); $response->header("Location" => URI->new_abs($path, $CPAN)); $response; } 1;