Thread -T Modus (1 answers)
Opened by pktm at 2007-10-06 14:44

pq
 2007-10-06 15:10
#100389 #100389
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
das problem ist, FindBin ist nicht taint-safe, weil der pfad u.u. aus umgebungsvariablen
erkannt wird.
es geht aber ein workaround:
Code (perl): (dl )
1
2
3
4
5
6
7
BEGIN {
    use FindBin qw/$Bin/;
    $Bin =~ m/(.*)/;
    $Bin = $1;
}
use lib $Bin;
use ...;
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread -T Modus