Next time, reply to the node you're commenting on, please.
I don't use -T, but I think its use is highly overrated. I don't like -T because I trust my own code, find tainting very restricting and don't like the enormous overhead untainting involves.
If there's one thing I hate, it's code like:
($var) = $var =~ /(.*)/s; # untaint $var
# ... or ... (and the following idiom is used a lot more often (why?))
$var = $1 if $var =~ /(.*)/s;
But code like that is seen very, very often. And that's because tainting is often recommended without telling it's not needed when you don't do system calls.
44696420796F7520732F2F2F65206F
7220756E7061636B3F202F6D736720
6D6521203A29202D2D204A75657264
|