Subject: | CGI::Session doesn't work with tainted mode |
When using Perl's tainted mode CGI::Session is killed with following message:
Insecure dependency in eval while running with -T switch at /usr/local/share/perl/5.6.1/CGI/Session.pm line 98.
I took a look onto line 98 and there's an eval for loading the correct driver module:
my $driver = "CGI::Session::$self->{_API_3}->{DRIVER}";
eval "require $driver" or die $@;
I'm working with Perl 5.6.1 under Debian Linux (Woody).