Thread Fragen zum Taintmodus
(13 answers)
Opened by rosti at 2020-01-21 10:20
Prüfe doch mit Scalar::Util ob $class tainted ist.
Der Tainted-Status hängt nicht am Inhalt. Auch wenn $class leer sein sollte, ist es sehr wohl "tainted". Damit ist auch $classfile tainted und damit auch "$classfile.pm". Beispiel: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 #! /usr/bin/perl -T use strict; use warnings; use 5.010; use Scalar::Util qw( tainted ); my $string = shift @ARGV // 'default'; say "'$string' is tainted: ", tainted($string); Code: (dl
)
1 $ perl -T t3.pl meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen! |