in reply to Re: Re: Untainting backtick command data
in thread Untainting backtick command data

1. by setting it to a fixed value

$ENV{PATH}="/path/part/one:/path/part/two";

2. by un-setting it and calling the external prog directly:

$ENV{PATH}=''; `/usr/bin/rsh ...`;

regards,
tomte


An intellectual is someone whose mind watches itself.
-- Albert Camus

Replies are listed 'Best First'.
Re: Re: Re: Re: Untainting backtick command data
by OpelSpeed (Initiate) on May 19, 2004 at 09:04 UTC
    It worked! Thanx a lot! Greetz, OpelSpeed