Your IP : 216.73.216.155


Current Path : /usr/share/perl/5.10.1/
Upload File :
Current File : //usr/share/perl/5.10.1/tainted.pl

# This subroutine returns true if its argument is tainted, false otherwise.

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

1;