Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
LWP /
Protocol /
Delete
Unzip
Name
Size
Permission
Date
Action
cpan.pm
1.33
KB
-rw-r--r--
2018-06-05 23:19
data.pm
1.2
KB
-rw-r--r--
2018-06-05 23:19
file.pm
3.75
KB
-rw-r--r--
2018-06-05 23:19
ftp.pm
18.69
KB
-rw-r--r--
2018-06-05 23:19
gopher.pm
5.59
KB
-rw-r--r--
2018-06-05 23:19
http.pm
14.76
KB
-rw-r--r--
2018-06-05 23:19
loopback.pm
586
B
-rw-r--r--
2018-06-05 23:19
mailto.pm
4.3
KB
-rw-r--r--
2018-06-05 23:19
nntp.pm
4.1
KB
-rw-r--r--
2018-06-05 23:19
nogo.pm
610
B
-rw-r--r--
2018-06-05 23:19
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.34'; 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;