source: trunk/essentials/dev-lang/perl/lib/tainted.pl

Last change on this file was 3181, checked in by bird, 18 years ago

perl 5.8.8

File size: 164 bytes
Line 
1# This subroutine returns true if its argument is tainted, false otherwise.
2
3sub tainted {
4 local($@);
5 eval { kill 0 * $_[0] };
6 $@ =~ /^Insecure/;
7}
8
91;
Note: See TracBrowser for help on using the repository browser.