HOME


sh-3ll 1.0
DIR:/usr/share/perl5/vendor_perl/
Upload File :
Current File : //usr/share/perl5/vendor_perl/tainted.pl
# This subroutine returns true if its argument is tainted, false otherwise.

sub tainted {
    local($@);
    eval { kill 0 * $_[0] };
    $@ =~ /^Insecure/;
}

1;