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 /
cpan /
autodie /
t /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Some
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
autodie
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
my
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
pujHa
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Caller_helper.pm
145
B
-r--r--r--
2014-12-27 11:48
Hints_pod_examples.pm
2.81
KB
-r--r--r--
2014-12-27 11:48
Hints_provider_does.pm
641
B
-r--r--r--
2014-12-27 11:48
Hints_provider_easy_does_it.pm
504
B
-r--r--r--
2014-12-27 11:48
Hints_provider_isa.pm
529
B
-r--r--r--
2014-12-27 11:48
Hints_test.pm
870
B
-r--r--r--
2014-12-27 11:48
OtherTypes.pm
246
B
-r--r--r--
2014-12-27 11:48
lethal.pm
125
B
-r--r--r--
2014-12-27 11:48
Save
Rename
package Hints_test; use strict; use warnings; use base qw(Exporter); our @EXPORT_OK = qw( fail_on_empty fail_on_false fail_on_undef ); use autodie::hints; # Create some dummy subs that just return their arguments. sub fail_on_empty { return @_; } sub fail_on_false { return @_; } sub fail_on_undef { return @_; } # Set them to different failure modes when used with autodie. autodie::hints->set_hints_for( \&fail_on_empty, { list => autodie::hints::EMPTY_ONLY , scalar => autodie::hints::EMPTY_ONLY } ); autodie::hints->set_hints_for( \&fail_on_false, { list => autodie::hints::EMPTY_OR_FALSE , scalar => autodie::hints::EMPTY_OR_FALSE } ); autodie::hints->set_hints_for( \&fail_on_undef, { list => autodie::hints::EMPTY_OR_UNDEF , scalar => autodie::hints::EMPTY_OR_UNDEF } ); 1;