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 /
dist /
SelfLoader /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
01SelfLoader.t
3.93
KB
-r--r--r--
2014-12-27 11:48
02SelfLoader-buggy.t
808
B
-r--r--r--
2014-12-27 11:48
03taint.t
169
B
-r--r--r--
2014-12-27 11:48
Save
Rename
use SelfLoader; print "1..1\n"; # this script checks that errors on self-loaded # subroutines that affect $@ are reported eval { buggy(); }; unless ($@ =~ /^syntax error/) { print "not "; } print "ok 1 - syntax errors are reported\n"; __END__ sub buggy { +>*; } # RT 40216 # # by Bo Lindbergh <blgl@hagernas.com>, at Aug 22, 2006 5:42 PM # # In the example below, there's a syntax error in the selfloaded # code for main::buggy. When the eval fails, SelfLoader::AUTOLOAD # tries to report this with "croak $@;". Unfortunately, # SelfLoader::croak does "require Carp;" without protecting $@, # which gets clobbered. The program then dies with the # uninformative message " at ./example line 3". # # #! /usr/local/bin/perl # use SelfLoader; # buggy(); # __END__ # sub buggy # { # +>*; # }