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::nogo; # If you want to disable access to a particular scheme, use this # class and then call # LWP::Protocol::implementor(that_scheme, 'LWP::Protocol::nogo'); # For then on, attempts to access URLs with that scheme will generate # a 500 error. use strict; our $VERSION = '6.52'; require HTTP::Response; require HTTP::Status; use base qw(LWP::Protocol); sub request { my($self, $request) = @_; my $scheme = $request->uri->scheme; return HTTP::Response->new( HTTP::Status::RC_INTERNAL_SERVER_ERROR, "Access to \'$scheme\' URIs has been disabled" ); } 1;