http://www.perlmonks.org?node_id=340515


in reply to Re: So, now what are taints?
in thread So, now what are taints?

You are forgetting not mentioning that there are actualy two pieces of data there that need untainting: one is the domain parameter obtained from the CGI, but the other is the PATH of your program. If you use backticks like that, and don't set up your PATH explicitly, perl -T will complain.

That appears not to make sense in a CGI environment, but it makes a lot of sense when you're writing setuid root scripts that can be run from the command line.

Replies are listed 'Best First'.
Re: Re: Re: So, now what are taints?
by cLive ;-) (Prior) on Mar 29, 2004 at 06:08 UTC
    Indeed. Sorry - but it is mentioned in the article I linked to that I wrote on untainting :)

    cLive ;-)