in reply to System Call Using Taint Mode

Backticks specifically and system calls in general under taint are fine. You just need to explicitly set your $ENV{PATH} to avoid bait-and-switch. See Cleaning Up Your Path in perlsec.

#!/usr/bin/perl -wT use strict; local $ENV{PATH} = '/bin'; print `echo hello\n`;

Replies are listed 'Best First'.
Re^2: System Call Using Taint Mode
by ishootperls (Novice) on Nov 16, 2011 at 17:52 UTC

    Beautiful !! Many thanks kennethk !!

    "An incendiary Perl will solve that problem" :-) - myself