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 /
CGI /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
Dump.t
221
B
-r--r--r--
2014-12-27 11:49
apache.t
164
B
-r--r--r--
2014-12-27 11:49
autoescape.t
6.13
KB
-r--r--r--
2014-12-27 11:49
can.t
112
B
-r--r--r--
2014-12-27 11:49
carp.t
11.04
KB
-r--r--r--
2014-12-27 11:49
charset.t
722
B
-r--r--r--
2014-12-27 11:49
checkbox_group.t
992
B
-r--r--r--
2014-12-27 11:49
cookie.t
15.64
KB
-r--r--r--
2014-12-27 11:49
delete.t
2.08
KB
-r--r--r--
2014-12-27 11:49
end_form.t
188
B
-r--r--r--
2014-12-27 11:49
form.t
8.83
KB
-r--r--r--
2014-12-27 11:49
function.t
4.79
KB
-r--r--r--
2014-12-27 11:49
headers.t
1.94
KB
-r--r--r--
2014-12-27 11:49
hidden.t
2.14
KB
-r--r--r--
2014-12-27 11:49
html.t
4.75
KB
-r--r--r--
2014-12-27 11:49
http.t
1.44
KB
-r--r--r--
2014-12-27 11:49
init.t
227
B
-r--r--r--
2014-12-27 11:49
init_test.txt
12
B
-r--r--r--
2014-12-27 11:49
multipart_init.t
741
B
-r--r--r--
2014-12-27 11:49
no_tabindex.t
4.08
KB
-r--r--r--
2014-12-27 11:49
param_fetch.t
838
B
-r--r--r--
2014-12-27 11:49
popup_menu.t
627
B
-r--r--r--
2014-12-27 11:49
pretty.t
2.12
KB
-r--r--r--
2014-12-27 11:49
push.t
2.04
KB
-r--r--r--
2014-12-27 11:49
query_string.t
308
B
-r--r--r--
2014-12-27 11:49
request.t
4.02
KB
-r--r--r--
2014-12-27 11:49
rt-52469.t
184
B
-r--r--r--
2014-12-27 11:49
save_read_roundtrip.t
583
B
-r--r--r--
2014-12-27 11:49
start_end_asterisk.t
2.86
KB
-r--r--r--
2014-12-27 11:49
start_end_end.t
2.91
KB
-r--r--r--
2014-12-27 11:49
start_end_start.t
2.94
KB
-r--r--r--
2014-12-27 11:49
switch.t
164
B
-r--r--r--
2014-12-27 11:49
tmpdir.t
1.25
KB
-r--r--r--
2014-12-27 11:49
unescapeHTML.t
875
B
-r--r--r--
2014-12-27 11:49
upload.t
4.69
KB
-r--r--r--
2014-12-27 11:49
uploadInfo.t
2.52
KB
-r--r--r--
2014-12-27 11:49
upload_post_text.txt
3.21
KB
-r--r--r--
2014-12-27 11:49
url.t
3.71
KB
-r--r--r--
2014-12-27 11:49
user_agent.t
362
B
-r--r--r--
2014-12-27 11:49
utf8.t
721
B
-r--r--r--
2014-12-27 11:49
util-58.t
1.03
KB
-r--r--r--
2014-12-27 11:49
util.t
1.22
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!/usr/local/bin/perl -w use lib qw(t/lib); use strict; # Due to a bug in older versions of MakeMaker & Test::Harness, we must # ensure the blib's are in @INC, else we might use the core CGI.pm use lib qw(blib/lib blib/arch); use Test::More tests => 45; use CGI qw(:standard end_h1 end_h2 end_h3 end_h4 end_h5 end_h6 end_table end_ul end_li end_ol end_td end_b end_i end_u end_div); is(start_h1(), "<h1>", "start_h1"); # TEST is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST is(end_h1(), "</h1>", "end_h1"); # TEST is(start_h2(), "<h2>", "start_h2"); # TEST is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST is(end_h2(), "</h2>", "end_h2"); # TEST is(start_h3(), "<h3>", "start_h3"); # TEST is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST is(end_h3(), "</h3>", "end_h3"); # TEST is(start_h4(), "<h4>", "start_h4"); # TEST is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST is(end_h4(), "</h4>", "end_h4"); # TEST is(start_h5(), "<h5>", "start_h5"); # TEST is(start_h5({class => 'hello'}), "<h5 class=\"hello\">", "start_h5 with param"); # TEST is(end_h5(), "</h5>", "end_h5"); # TEST is(start_h6(), "<h6>", "start_h6"); # TEST is(start_h6({class => 'hello'}), "<h6 class=\"hello\">", "start_h6 with param"); # TEST is(end_h6(), "</h6>", "end_h6"); # TEST is(start_table(), "<table>", "start_table"); # TEST is(start_table({class => 'hello'}), "<table class=\"hello\">", "start_table with param"); # TEST is(end_table(), "</table>", "end_table"); # TEST is(start_ul(), "<ul>", "start_ul"); # TEST is(start_ul({class => 'hello'}), "<ul class=\"hello\">", "start_ul with param"); # TEST is(end_ul(), "</ul>", "end_ul"); # TEST is(start_li(), "<li>", "start_li"); # TEST is(start_li({class => 'hello'}), "<li class=\"hello\">", "start_li with param"); # TEST is(end_li(), "</li>", "end_li"); # TEST is(start_ol(), "<ol>", "start_ol"); # TEST is(start_ol({class => 'hello'}), "<ol class=\"hello\">", "start_ol with param"); # TEST is(end_ol(), "</ol>", "end_ol"); # TEST is(start_td(), "<td>", "start_td"); # TEST is(start_td({class => 'hello'}), "<td class=\"hello\">", "start_td with param"); # TEST is(end_td(), "</td>", "end_td"); # TEST is(start_b(), "<b>", "start_b"); # TEST is(start_b({class => 'hello'}), "<b class=\"hello\">", "start_b with param"); # TEST is(end_b(), "</b>", "end_b"); # TEST is(start_i(), "<i>", "start_i"); # TEST is(start_i({class => 'hello'}), "<i class=\"hello\">", "start_i with param"); # TEST is(end_i(), "</i>", "end_i"); # TEST is(start_u(), "<u>", "start_u"); # TEST is(start_u({class => 'hello'}), "<u class=\"hello\">", "start_u with param"); # TEST is(end_u(), "</u>", "end_u"); # TEST is(start_div(), "<div>", "start_div"); # TEST is(start_div({class => 'hello'}), "<div class=\"hello\">", "start_div with param"); # TEST is(end_div(), "</div>", "end_div"); # TEST