in reply to Taint and Mail::Mailer
First problem I see lets you relax a little. Reverse the lines
to$ENV{'PATH'} = '/bin:/usr/bin:/sbin'; delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
That gives you a usable and untainted $ENV{PATH}.delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'}; $ENV{'PATH'} = '/bin:/usr/bin:/sbin';
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Yet another Taint question
by Nkuvu (Priest) on Jun 26, 2004 at 05:19 UTC | |
by Zaxo (Archbishop) on Jun 26, 2004 at 05:24 UTC | |
by Nkuvu (Priest) on Jun 26, 2004 at 05:28 UTC |