in reply to Re^3: Taint mode trap from Perl 5.6 to 5.8
in thread Taint mode trap from Perl 5.6 to 5.8
Ok, not tainted, shall work, right? No. When I go to the next step and uncomment the $msg->send(); line, the error remains! Without a single tainted variable! How comes!!!??my $msg = MIME::Lite->new( To => "$emailsite", From => "$from", Subject => "Contato >> $assunto", Type => 'text/html', Data => "$html" ); my $test = qq# $msg $emailsite $from $assunto $html #; + if ( is_tainted($test) ) { die "tainted"; } else { die "not tainted"; +} # Dies "not tainted" # $msg->send();
Also, how can I check the @cmd if the module is in my host's public module repository?
Thanks and sorry for the maddening problem
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Taint mode trap from Perl 5.6 to 5.8 - going mad!
by fizbin (Chaplain) on Sep 16, 2005 at 12:04 UTC | |
by Anonymous Monk on Sep 16, 2005 at 19:10 UTC |