windows-nt/Source/XPSP1/NT/tools/x86/perl/lib/tainted.pl
2020-09-26 16:20:57 +08:00

10 lines
164 B
Perl

# This subroutine returns true if its argument is tainted, false otherwise.
sub tainted {
local($@);
eval { kill 0 * $_[0] };
$@ =~ /^Insecure/;
}
1;