Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
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--
2023-02-27 19:18
data.pm
1.21
KB
-rw-r--r--
2023-02-27 19:18
file.pm
3.75
KB
-rw-r--r--
2023-02-27 19:18
ftp.pm
18.7
KB
-rw-r--r--
2023-02-27 19:18
gopher.pm
5.6
KB
-rw-r--r--
2023-02-27 19:18
http.pm
14.76
KB
-rw-r--r--
2023-02-27 19:18
https.pm
6.33
KB
-rw-r--r--
2020-12-21 19:39
loopback.pm
588
B
-rw-r--r--
2023-02-27 19:18
mailto.pm
4.3
KB
-rw-r--r--
2023-02-27 19:18
nntp.pm
4.1
KB
-rw-r--r--
2023-02-27 19:18
nogo.pm
612
B
-rw-r--r--
2023-02-27 19:18
Save
Rename
package LWP::Protocol::loopback; use strict; our $VERSION = '6.68'; require HTTP::Response; use parent qw(LWP::Protocol); sub request { my($self, $request, $proxy, $arg, $size, $timeout) = @_; my $response = HTTP::Response->new(200, "OK"); $response->content_type("message/http; msgtype=request"); $response->header("Via", "loopback/1.0 $proxy") if $proxy; $response->header("X-Arg", $arg); $response->header("X-Read-Size", $size); $response->header("X-Timeout", $timeout); return $self->collect_once($arg, $response, $request->as_string); } 1;