--- Mark Ross <[EMAIL PROTECTED]> wrote:
> #!/usr/local/bin/perl -wT
> use strict;
> use CGI;
> my $q = new CGI;
> print ("hi");
> exit;
> 
> produces this:
> 
> "Too late for "-T" option at w:\cgi-bin\admin\tainttest.pl line 1."

I wrote this to a file named x.
Running it with 
   perl x
got the same error.
Making it executable and running it did not.
Running it with 
   perl -T x
did not.

You're running perl without taint checking, then loading a script that
wants taint checking, so it dies. =o)

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to