home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / webobjects / extensions / win-nt / NTPerl5-109.exe / Lib / tainted.pl < prev    next >
Encoding:
Text File  |  1996-04-16  |  173 b   |  10 lines

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