Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
CPANPLUS /
[ HOME SHELL ]
Name
Size
Permission
Action
Backend
[ DIR ]
drwxrwxrwx
Config
[ DIR ]
drwxrwxrwx
Configure
[ DIR ]
drwxrwxrwx
Dist
[ DIR ]
drwxrwxrwx
Internals
[ DIR ]
drwxrwxrwx
Module
[ DIR ]
drwxrwxrwx
Shell
[ DIR ]
drwxrwxrwx
Backend.pm
39.6
KB
-rw-rw-rw-
Config.pm
23.21
KB
-rw-rw-rw-
Configure.pm
15.94
KB
-rw-rw-rw-
Dist.pm
25.84
KB
-rw-rw-rw-
Error.pm
5.13
KB
-rw-rw-rw-
FAQ.pod
657
B
-rw-rw-rw-
Hacking.pod
3.67
KB
-rw-rw-rw-
Internals.pm
14.94
KB
-rw-rw-rw-
Module.pm
53.6
KB
-rw-rw-rw-
Selfupdate.pm
16.6
KB
-rw-rw-rw-
Shell.pm
9.42
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Error.pm
package CPANPLUS::Error; use strict; use vars qw[$VERSION]; $VERSION = "0.9908"; use Log::Message private => 0;; =pod =head1 NAME CPANPLUS::Error - error handling for CPANPLUS =head1 SYNOPSIS use CPANPLUS::Error qw[cp_msg cp_error]; =head1 DESCRIPTION This module provides the error handling code for the CPANPLUS libraries, and is mainly intended for internal use. =head1 FUNCTIONS =head2 cp_msg("message string" [,VERBOSE]) Records a message on the stack, and prints it to C<STDOUT> (or actually C<$MSG_FH>, see the C<GLOBAL VARIABLES> section below), if the C<VERBOSE> option is true. The C<VERBOSE> option defaults to false. =head2 msg() An alias for C<cp_msg>. =head2 cp_error("error string" [,VERBOSE]) Records an error on the stack, and prints it to C<STDERR> (or actually C<$ERROR_FH>, see the C<GLOBAL VARIABLES> sections below), if the C<VERBOSE> option is true. The C<VERBOSE> options defaults to true. =head2 error() An alias for C<cp_error>. =head1 CLASS METHODS =head2 CPANPLUS::Error->stack() Retrieves all the items on the stack. Since C<CPANPLUS::Error> is implemented using C<Log::Message>, consult its manpage for the function C<retrieve> to see what is returned and how to use the items. =head2 CPANPLUS::Error->stack_as_string([TRACE]) Returns the whole stack as a printable string. If the C<TRACE> option is true all items are returned with C<Carp::longmess> output, rather than just the message. C<TRACE> defaults to false. =head2 CPANPLUS::Error->flush() Removes all the items from the stack and returns them. Since C<CPANPLUS::Error> is implemented using C<Log::Message>, consult its manpage for the function C<retrieve> to see what is returned and how to use the items. =cut BEGIN { use Exporter; use Params::Check qw[check]; use vars qw[@EXPORT @ISA $ERROR_FH $MSG_FH]; @ISA = 'Exporter'; @EXPORT = qw[cp_error cp_msg error msg]; my $log = new Log::Message; for my $func ( @EXPORT ) { no strict 'refs'; my $prefix = 'cp_'; my $name = $func; $name =~ s/^$prefix//g; *$func = sub { my $msg = shift; ### no point storing non-messages return unless defined $msg; $log->store( message => $msg, tag => uc $name, level => $prefix . $name, extra => [@_] ); }; } sub flush { my @foo = $log->flush; return unless @foo; return reverse @foo; } sub stack { return $log->retrieve( chrono => 1 ); } sub stack_as_string { my $class = shift; my $trace = shift() ? 1 : 0; return join $/, map { '[' . $_->tag . '] [' . $_->when . '] ' . ($trace ? $_->message . ' ' . $_->longmess : $_->message); } __PACKAGE__->stack; } } =head1 GLOBAL VARIABLES =over 4 =item $ERROR_FH This is the filehandle all the messages sent to C<error()> are being printed. This defaults to C<*STDERR>. =item $MSG_FH This is the filehandle all the messages sent to C<msg()> are being printed. This default to C<*STDOUT>. =back =cut local $| = 1; $ERROR_FH = \*STDERR; $MSG_FH = \*STDOUT; package # Hide from Pause Log::Message::Handlers; use Carp (); { sub cp_msg { my $self = shift; my $verbose = shift; ### so you don't want us to print the msg? ### return if defined $verbose && $verbose == 0; my $old_fh = select $CPANPLUS::Error::MSG_FH; print '['. $self->tag . '] ' . $self->message . "\n"; select $old_fh; return; } sub cp_error { my $self = shift; my $verbose = shift; ### so you don't want us to print the error? ### return if defined $verbose && $verbose == 0; my $old_fh = select $CPANPLUS::Error::ERROR_FH; ### is only going to be 1 for now anyway ### ### C::I may not be loaded, so do a can() check first my $cb = CPANPLUS::Internals->can('_return_all_objects') ? (CPANPLUS::Internals->_return_all_objects)[0] : undef; ### maybe we didn't initialize an internals object (yet) ### my $debug = $cb ? $cb->configure_object->get_conf('debug') : 0; my $msg = '['. $self->tag . '] ' . $self->message . "\n"; ### i'm getting this warning in the test suite: ### Ambiguous call resolved as CORE::warn(), qualify as such or ### use & at CPANPLUS/Error.pm line 57. ### no idea where it's coming from, since there's no 'sub warn' ### anywhere to be found, but i'll mark it explicitly nonetheless ### --kane print $debug ? Carp::shortmess($msg) : $msg . "\n"; select $old_fh; return; } } 1; # Local variables: # c-indentation-style: bsd # c-basic-offset: 4 # indent-tabs-mode: nil # End: # vim: expandtab shiftwidth=4:
Close