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::data; # Implements access to data:-URLs as specified in RFC 2397 use strict; our $VERSION = '6.52'; require HTTP::Response; require HTTP::Status; use base qw(LWP::Protocol); use HTTP::Date qw(time2str); require LWP; # needs version number 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 data'); } # 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 'data:' URLs"); } my $url = $request->uri; my $response = HTTP::Response->new( HTTP::Status::RC_OK, "Document follows"); my $media_type = $url->media_type; my $data = $url->data; $response->header('Content-Type' => $media_type, 'Content-Length' => length($data), 'Date' => time2str(time), 'Server' => "libwww-perl-internal/$LWP::VERSION" ); $data = "" if $method eq "HEAD"; return $self->collect_once($arg, $response, $data); } 1;