Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 3.129.206.232
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
LWP /
Protocol /
Delete
Unzip
Name
Size
Permission
Date
Action
cpan.pm
1.33
KB
-rw-r--r--
2022-01-21 21:41
data.pm
1.21
KB
-rw-r--r--
2022-01-21 21:41
file.pm
3.75
KB
-rw-r--r--
2022-01-21 21:41
ftp.pm
18.7
KB
-rw-r--r--
2022-01-21 21:41
gopher.pm
5.6
KB
-rw-r--r--
2022-01-21 21:41
http.pm
14.76
KB
-rw-r--r--
2022-01-21 21:41
https.pm
6.33
KB
-rw-r--r--
2020-12-21 19:39
loopback.pm
588
B
-rw-r--r--
2022-01-21 21:41
mailto.pm
4.3
KB
-rw-r--r--
2022-01-21 21:41
nntp.pm
4.1
KB
-rw-r--r--
2022-01-21 21:41
nogo.pm
612
B
-rw-r--r--
2022-01-21 21:41
Save
Rename
package LWP::Protocol::data; # Implements access to data:-URLs as specified in RFC 2397 use strict; our $VERSION = '6.61'; require HTTP::Response; require HTTP::Status; use parent 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;