|
NAMEParanoid - Paranoia support for safer programsVERSION$Id: lib/Paranoid.pm, 2.08 2020/12/31 12:10:06 acorliss Exp $SYNOPSISuse Paranoid; $errMsg = Paranoid::ERROR; psecureEnv("/bin:/usr/bin"); DESCRIPTIONThis collection of modules started out as modules which perform things (debatably) in a safer and taint-safe manner. Since then it's also grown to include functionality that fit into the same framework and conventions of the original modules, including keeping the debug hooks for command-line debugging.All the modules below are intended to be used directly in your programs if you need the functionality they provide. This module does provide one function meant to secure your environment enough to satisfy taint-enabled programs, and as a container which holds the last reported error from any code in the Paranoid framework. IMPORT LISTSThis module exports the following symbols by default:psecureEnv The following specialized import lists also exist: List Members -------------------------------------------------------- all @defaults PTRUE_ZERO SUBROUTINES/METHODSpsecureEnvpsecureEnv("/bin:/usr/bin"); This function deletes some of the dangerous environment variables that can be used to subvert perl when being run in setuid applications. It also sets the path, either to the passed argument (if passed) or a default of "/bin:/usr/bin". Paranoid::ERROR$errMsg = Paranoid::ERROR; Paranoid::ERROR = $errMsg; This lvalue function is not exported and must be referenced via the Paranoid namespace. TAINT NOTESTaint-mode programming can be somewhat of an adventure until you know all the places considered dangerous under perl's taint mode. The following functions should generally have their arguments detainted before using:exec system open glob unlink mkdir chdir rmdir chown chmod umask utime link symlink kill eval truncate ioctl fcntl chroot setpgrp setpriority syscall socket socketpair bind connect DEPENDENCIESWhile this module itself doesn't have any external dependencies various child modules do. Please check their documentation for any particulars should you use them.SEE ALSOThe following modules are available for use. You should check their POD for specifics on use:
BUGS AND LIMITATIONSAUTHORArthur Corliss (corliss@digitalmages.com)LICENSE AND COPYRIGHTThis software is free software. Similar to Perl, you can redistribute it and/or modify it under the terms of either:a) the GNU General Public License <https://www.gnu.org/licenses/gpl-1.0.html> as published by the Free Software Foundation <http://www.fsf.org/>; either version 1 <https://www.gnu.org/licenses/gpl-1.0.html>, or any later version <https://www.gnu.org/licenses/license-list.html#GNUGPL>, or b) the Artistic License 2.0 <https://opensource.org/licenses/Artistic-2.0>, subject to the following additional term: No trademark rights to "Paranoid" have been or are conveyed under any of the above licenses. However, "Paranoid" may be used fairly to describe this unmodified software, in good faith, but not as a trademark. (c) 2005 - 2020, Arthur Corliss (corliss@digitalmages.com) (tm) 2008 - 2020, Paranoid Inc. (www.paranoid.com)
Visit the GSP FreeBSD Man Page Interface. |