File: taint_check.t

package info (click to toggle)
libapache-asp-perl 2.63-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 4,120 kB
  • sloc: perl: 6,044; php: 409; sh: 62; lisp: 22; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/local/bin/perl -T

# for some reason on my Solaris 5.00551 perl, doing
# use Apache::ASP as opposed to use lib qw(.); use ASP
# would make a difference between having an error and
# not having one during "make test", really odd
#
# use Apache::ASP;
#

use lib qw(blib/lib lib);
use Apache::ASP::CGI;

use strict;
#$SIG{__DIE__} = \&Carp::confess;

#    print STDERR $^]." $^V $PERL_VERSION --- \n";
&Apache::ASP::CGI::do_self();

__END__

<% 
  $Response->Include('session.inc'); 
%>