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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-04-16
|
173 b
|
10 lines
# This subroutine returns true if its argument is tainted, false otherwise.
sub tainted {
local($@);
eval { kill 0 * $_[0] };
$@ =~ /^Insecure/;
}
1;