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 /
warnings /
Delete
Unzip
Name
Size
Permission
Date
Action
1global
3.5
KB
-r--r--r--
2014-12-27 11:49
2use
6.5
KB
-r--r--r--
2014-12-27 11:49
3both
4.01
KB
-r--r--r--
2014-12-27 11:49
4lint
4.06
KB
-r--r--r--
2014-12-27 11:49
5nolint
2.75
KB
-r--r--r--
2014-12-27 11:49
6default
2.96
KB
-r--r--r--
2014-12-27 11:49
7fatal
10.96
KB
-r--r--r--
2014-12-27 11:49
8signal
434
B
-r--r--r--
2014-12-27 11:49
9enabled
21.79
KB
-r--r--r--
2014-12-27 11:49
9uninit
63.97
KB
-r--r--r--
2014-12-27 11:49
av
160
B
-r--r--r--
2014-12-27 11:49
doio
9.3
KB
-r--r--r--
2014-12-27 11:49
doop
71
B
-r--r--r--
2014-12-27 11:49
gv
5.57
KB
-r--r--r--
2014-12-27 11:49
hv
130
B
-r--r--r--
2014-12-27 11:49
irs
413
B
-r--r--r--
2014-12-27 11:49
malloc
152
B
-r--r--r--
2014-12-27 11:49
mg
1.17
KB
-r--r--r--
2014-12-27 11:49
op
51.38
KB
-r--r--r--
2014-12-27 11:49
pad
8.98
KB
-r--r--r--
2014-12-27 11:49
perl
4.86
KB
-r--r--r--
2014-12-27 11:49
perlio
1.12
KB
-r--r--r--
2014-12-27 11:49
pp
2.54
KB
-r--r--r--
2014-12-27 11:49
pp_ctl
4.35
KB
-r--r--r--
2014-12-27 11:49
pp_hot
8.28
KB
-r--r--r--
2014-12-27 11:49
pp_pack
2.06
KB
-r--r--r--
2014-12-27 11:49
pp_sys
21.25
KB
-r--r--r--
2015-01-11 14:00
regcomp
324
B
-r--r--r--
2014-12-27 11:49
regexec
3.14
KB
-r--r--r--
2014-12-27 11:49
run
94
B
-r--r--r--
2014-12-27 11:49
sv
8.87
KB
-r--r--r--
2014-12-27 11:49
taint
970
B
-r--r--r--
2014-12-27 11:49
toke
34.17
KB
-r--r--r--
2014-12-27 11:49
universal
646
B
-r--r--r--
2014-12-27 11:49
utf8
19.65
KB
-r--r--r--
2014-12-27 11:49
util
2.95
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
regexec.c This test generates "bad free" warnings when run under PERL_DESTRUCT_LEVEL. This file merely serves as a placeholder for investigation. Complex regular subexpression recursion limit (%d) exceeded $_ = 'a' x (2**15+1); /^()(a\1)*$/ ; Complex regular subexpression recursion limit (%d) exceeded $_ = 'a' x (2**15+1); /^()(a\1)*?$/ ; (The actual value substituted for %d is masked in the tests so that REG_INFTY configuration variable value does not affect outcome.) __END__ # regexec.c print("SKIPPED\n# most systems run into stacksize limits\n"),exit; use warnings 'regexp' ; $SIG{__WARN__} = sub{local ($m) = shift; $m =~ s/\(\d+\)/(*MASKED*)/; print STDERR $m}; $_ = 'a' x (2**15+1); /^()(a\1)*$/ ; # # If this test fails with a segmentation violation or similar, # you may have to increase the default stacksize limit in your # shell. You may need superuser privileges. # # Under the sh, ksh, zsh: # $ ulimit -s # 8192 # $ ulimit -s 16000 # # Under the csh: # % limit stacksize # stacksize 8192 kbytes # % limit stacksize 16000 # EXPECT Complex regular subexpression recursion limit (*MASKED*) exceeded at - line 9. ######## # regexec.c print("SKIPPED\n# most systems run into stacksize limits\n"),exit; no warnings 'regexp' ; $SIG{__WARN__} = sub{local ($m) = shift; $m =~ s/\(\d+\)/(*MASKED*)/; print STDERR $m}; $_ = 'a' x (2**15+1); /^()(a\1)*$/ ; # # If this test fails with a segmentation violation or similar, # you may have to increase the default stacksize limit in your # shell. You may need superuser privileges. # # Under the sh, ksh, zsh: # $ ulimit -s # 8192 # $ ulimit -s 16000 # # Under the csh: # % limit stacksize # stacksize 8192 kbytes # % limit stacksize 16000 # EXPECT ######## # regexec.c print("SKIPPED\n# most systems run into stacksize limits\n"),exit; use warnings 'regexp' ; $SIG{__WARN__} = sub{local ($m) = shift; $m =~ s/\(\d+\)/(*MASKED*)/; print STDERR $m}; $_ = 'a' x (2**15+1); /^()(a\1)*?$/ ; # # If this test fails with a segmentation violation or similar, # you may have to increase the default stacksize limit in your # shell. You may need superuser privileges. # # Under the sh, ksh, zsh: # $ ulimit -s # 8192 # $ ulimit -s 16000 # # Under the csh: # % limit stacksize # stacksize 8192 kbytes # % limit stacksize 16000 # EXPECT Complex regular subexpression recursion limit (*MASKED*) exceeded at - line 9. ######## # regexec.c print("SKIPPED\n# most systems run into stacksize limits\n"),exit; no warnings 'regexp' ; $SIG{__WARN__} = sub{local ($m) = shift; $m =~ s/\(\d+\)/(*MASKED*)/; print STDERR $m}; $_ = 'a' x (2**15+1); /^()(a\1)*?$/ ; # # If this test fails with a segmentation violation or similar, # you may have to increase the default stacksize limit in your # shell. You may need superuser privileges. # # Under the sh, ksh, zsh: # $ ulimit -s # 8192 # $ ulimit -s 16000 # # Under the csh: # % limit stacksize # stacksize 8192 kbytes # % limit stacksize 16000 # EXPECT