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 /
t /
lib /
croak /
Delete
Unzip
Name
Size
Permission
Date
Action
mg
126
B
-r--r--r--
2014-12-27 11:49
op
2
KB
-r--r--r--
2014-12-27 11:49
pp
501
B
-r--r--r--
2014-12-27 11:49
pp_ctl
383
B
-r--r--r--
2014-12-27 11:49
pp_hot
1.48
KB
-r--r--r--
2014-12-27 11:49
toke
4.88
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
__END__ # NAME my $<special> my $!; EXPECT Can't use global $! in "my" at - line 1, near "my $!" Execution of - aborted due to compilation errors. ######## # NAME OP_HELEM fields package Foo; use fields qw(a b); sub new { my $class = shift; return fields::new($class); } my Foo $f = Foo->new; $f->{c} = 1; EXPECT No such class field "c" in variable $f of type Foo at - line 8. ######## # NAME "No such field" with block: ${$ref}{key} %FIELDS; # empty hash so all keys are invalid my main $r; ${$r}{key}; EXPECT No such class field "key" in variable $r of type main at - line 3. ######## # NAME OP_HSLICE fields package Foo; use fields qw(a b); sub new { my $class = shift; return fields::new($class); } my Foo $f = Foo->new; @$f{"a", "c"} = ( 1, 2 ); EXPECT No such class field "c" in variable $f of type Foo at - line 8. ######## # NAME Single OP_HSLICE field %FIELDS; # vivify it, but leave it empty, so all fields are invalid my main $f; @$f{"a"}; EXPECT No such class field "a" in variable $f of type main at - line 3. ######## # NAME OP_KVHSLICE fields BEGIN { %FIELDS = qw(a 1 b 1); } my main $f; %$f{"a","c"}; EXPECT No such class field "c" in variable $f of type main at - line 3. ######## # NAME Can't declare conditional my($a?$b:$c) EXPECT Can't declare conditional expression in "my" at - line 1, at EOF Execution of - aborted due to compilation errors. ######## # NAME Can't declare do block my(do{}) EXPECT Can't declare do block in "my" at - line 1, at EOF Execution of - aborted due to compilation errors. ######## # NAME delete BAD delete $x; EXPECT delete argument is not a HASH or ARRAY element or slice at - line 1. ######## # NAME delete sort use warnings; delete sort; # used to warn about scalar context, too EXPECT delete argument is not a HASH or ARRAY element or slice at - line 2. ######## # NAME exists BAD exists $x; EXPECT exists argument is not a HASH or ARRAY element or a subroutine at - line 1. ######## # NAME exists non-sub exists &foo() EXPECT exists argument is not a subroutine name at - line 1.