Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
x86_64-linux-gnu /
perl5 /
5.34 /
Devel /
Cover /
[ HOME SHELL ]
Name
Size
Permission
Action
Annotation
[ DIR ]
drwxr-xr-x
DB
[ DIR ]
drwxr-xr-x
Report
[ DIR ]
drwxr-xr-x
Branch.pm
2.28
KB
-rw-r--r--
Collection.pm
25.29
KB
-rw-r--r--
Condition.pm
1.35
KB
-rw-r--r--
Condition_and_2.pm
1.03
KB
-rw-r--r--
Condition_and_3.pm
1.04
KB
-rw-r--r--
Condition_or_2.pm
1.02
KB
-rw-r--r--
Condition_or_3.pm
1.04
KB
-rw-r--r--
Condition_xor_4.pm
1.03
KB
-rw-r--r--
Criterion.pm
2.71
KB
-rw-r--r--
DB.pm
30.7
KB
-rw-r--r--
Dumper.pm
1.37
KB
-rw-r--r--
Html_Common.pm
884
B
-rw-r--r--
Inc.pm
1.23
KB
-rw-r--r--
Op.pm
2.91
KB
-rw-r--r--
Pod.pm
1.53
KB
-rw-r--r--
Statement.pm
1.19
KB
-rw-r--r--
Subroutine.pm
1.19
KB
-rw-r--r--
Test.pm
14.12
KB
-rw-r--r--
Time.pm
1.53
KB
-rw-r--r--
Truth_Table.pm
15.63
KB
-rw-r--r--
Tutorial.pod
5.24
KB
-rw-r--r--
Util.pm
2.1
KB
-rw-r--r--
Web.pm
28.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Dumper.pm
# This file is part of Devel::Cover. # This software is free. It is licensed under the same terms as Perl itself. # The latest version of this software should be available from my homepage: # http://www.pjcj.net # Author of this file: Olivier Mengué package # Private module Devel::Cover::Dumper; use strict qw( vars subs ); # no refs use warnings; our $VERSION = '1.36'; # VERSION sub import { my $caller = caller; if (defined &{"${caller}::Dumper"} && \&{"${caller}::Dumper"} != \&Dumper) { require Carp; Carp::croak("Data::Dumper previously imported. " . "Use Devel::Cover::Dumper instead."); } *{"${caller}::Dumper"} = \&Dumper; } sub Dumper { require Data::Dumper; local $Data::Dumper::Indent = 1; local $Data::Dumper::Sortkeys = 1; Data::Dumper::Dumper(@_); } 1 __END__ =encoding utf8 =head1 NAME Devel::Cover::Dumper - Internal module for debugging purposes =head1 VERSION version 1.36 =head1 SYNOPSIS use Devel::Cover::Dumper; print Dumper $x; =head1 DESCRIPTION Wrapper around Data::Dumper::Dumper. =head1 SEE ALSO Devel::Cover =head1 METHODS =head1 BUGS Huh? =head1 LICENCE Copyright 2012, Olivier Mengué This software is free. It is licensed under the same terms as Perl itself. The latest version of this software should be available from my homepage: http://www.pjcj.net =cut
Close