in reply to When to use Perl's taint ?
Perl's taint checking just kills your script when you use some user input in a possibly dangerous way. It doesn't do any automatic fixing of the problem, so you are doing your own taint checking in a situation-specific way.
With taint checking, Perl just tries to warn you if you screw up, and kill your script before it does anything dangerous.
|
|---|