Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Curtis Poe
--- Mark Bergeron <[EMAIL PROTECTED]> wrote: > This could be. When running under > > #!/usr/bin/perl -wT > > Too late for -T > > I'm running 626 on Win2K Pro IIS Mark, If you see my reply to Eric Wang in this thread, I describe how to get around this problem. Basically, what's going on is t

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Mark Bergeron
This could be. When running under #!/usr/bin/perl -wT Too late for -T I'm running 626 on Win2K Pro IIS -Original Message- From: "Curtis Poe"<[EMAIL PROTECTED]> To: "CGI Beginners"<[EMAIL PROTECTED]> Date: Wed Aug 15 09:50:54 PDT 2001 Subject: R

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Curtis Poe
--- Eric Wang <[EMAIL PROTECTED]> wrote: > > So I can actually use a CGI to carry out the perl script in the front end > and put the -T inside the cgi right? and the users cannot see which perl > script was executed because it's on the server site. > Is that right? > > eric Eric, You'll have t

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Eric Wang
So I can actually use a CGI to carry out the perl script in the front end and put the -T inside the cgi right? and the users cannot see which perl script was executed because it's on the server site. Is that right? eric On Wed, 15 Aug 2001, Curtis Poe wrote: > --- Mark Bergeron <[EMAIL PROTECT

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Curtis Poe
--- Mark Bergeron <[EMAIL PROTECTED]> wrote: > Taint won't run on Win32 anyway. Mark, This is actually a common misconception. Taint checking works just fine on Win32 using ActiveState Perl. Try the following from the command line: perl -Te "$x=shift;open TEST, qq/>$x/" test.txt You will

Re: Re: CGI on IIS <- bad idea?

2001-08-15 Thread Mark Bergeron
Taint won't run on Win32 anyway. -Original Message- From: "Curtis Poe"<[EMAIL PROTECTED]> To: "CGI Beginners"<[EMAIL PROTECTED]> Date: Tue Aug 14 15:02:40 PDT 2001 Subject: Re: CGI on IIS <- bad idea? >--- Eric Wang <[EMAIL PROTECTED]>

Re: CGI on IIS <- bad idea?

2001-08-14 Thread Curtis Poe
--- Eric Wang <[EMAIL PROTECTED]> wrote: > Thanks! can you explain what does the taint option do? > I usually just use #!/script/perl.exe > > Thanks for your help! > eric Eric, If you enable taint checking, any data coming into your program from outside of the program is considered "tainted".