"copied"
[mailer.git] / 0.2.1-FINAL / inc / libs / security_functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/20/2005 *
4  * ===============                              Last change: 09/20/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : security_functions.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Secure all GET, POST and COOKIE data             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle GET, POST und COOKIE-Daten sichern          *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 /**
41  * Function to secure input strings
42  *
43  * @param       $str    The unsecured string
44  * @param       $strip  Strip tags
45  * @return      $str    A (hopefully) secured string against XSS and other bad things
46  */
47 function secureString ($str, $strip=true) {
48         // Shall we strip HTML code?
49         if ($strip) $str = strip_tags($str);
50
51         // Trim string
52         $str = trim($str);
53
54         // Encode in entities
55         $str = htmlentities($str, ENT_QUOTES);
56         return $str;
57 }
58
59 // Run only once this security check/exchange
60 if (defined('__SECURITY')) return;
61
62 // Fatal messages goes here
63 global $FATAL;
64 $FATAL = array();
65
66 // Runtime/GPC quoting is off now...
67 @set_magic_quotes_runtime(false);
68 @ini_set('magic_quotes_gpc', false); // This may not work on some systems
69
70 // Check if important arrays are found and define them if missing
71 if (!isset($_SERVER)) {
72         global $_SERVER;
73         $_SERVER = $GLOBALS['_SERVER'];
74 }
75
76 if (!isset($_GET)) {
77         global $_GET;
78         $_GET = $GLOBALS['_GET'];
79 }
80
81 if (!isset($_POST)) {
82         global $_POST;
83         $_POST = $GLOBALS['_POST'];
84 }
85
86 if (!isset($_COOKIE)) {
87         global $_COOKIE;
88         $_COOKIE = $GLOBALS['_COOKIE'];
89 }
90
91 // Include IP-Filter here
92 //require("/usr/share/php/ipfilter.php");
93
94 // Generate arrays which holds the relevante chars to replace
95 global $SEC_CHARS, $URL_CHARS;
96 $SEC_CHARS = array(
97         // The chars we are looking for...
98         'from' => array("{", "}", "/", ".", "'", "$", "(", ")", '{--', '--}', "%", ";", "[", "]", ":", "--"),
99         // ... and we will replace to.
100         'to'   => array(
101                 "{OPEN_ANCHOR2}",
102                 "{CLOSE_ANCHOR2}",
103                 "{SLASH}",
104                 "{DOT}",
105                 '{QUOT}',
106                 "{DOLLAR}",
107                 "{OPEN_ANCHOR}",
108                 "{CLOSE_ANCHOR}",
109                 "{OPEN_TEMPLATE}",
110                 "{CLOSE_TEMPLATE}",
111                 "{PER}",
112                 "{SEMI}",
113                 "{OPEN_INDEX}",
114                 "{CLOSE_INDEX}",
115                 "{DBL_DOT}",
116                 "{COMMENT}"
117         ),
118 );
119
120 // Characters allowed in URLs
121 //
122 // Note: Do not replace 'to' with 'from' and vise-versa! When you do this all booked URLs will be
123 //       rejected because of the {SLASH}, {DOT} and all below listed items inside the URL.
124 $URL_CHARS = array(
125         // Search for these secured characters
126         'to'   => array("{SLASH}", "{DOT}", "{PER}", "{DBL_DOT}", "{COMMENT}"),
127         // Replace with these characters
128         'from' => array("/", ".", "%", ":", "--")
129 );
130
131 // Overworked security part:
132 if (is_array($_GET)) {
133         foreach ($_GET as $seckey => $secvalue) {
134                 if (is_array($secvalue)) {
135                         // Throw arrays away...
136                         unset($_GET[$seckey]);
137                 } else {
138                         // Only variables are allowed (non-array) but we secure them all!
139                         foreach ($SEC_CHARS['from'] as $key => $char) {
140                                 // Pass all through
141                                 $_GET[$seckey] = str_replace($char  , $SEC_CHARS['to'][$key], $_GET[$seckey]);
142                         }
143
144                         // Strip all other out
145                         $_GET[$seckey] = strip_tags($_GET[$seckey]);
146                 }
147         }
148 }
149
150 if (basename($_SERVER['PHP_SELF']) != "install.php") {
151         // And POST data
152         foreach ($_POST as $seckey => $secvalue) {
153                 if (!is_array($secvalue)) {
154                         // Only variables are allowed (non-array) to be secured...
155                         foreach ($SEC_CHARS['from'] as $key => $char) {
156                                 // Pass all through
157                                 $_POST[$seckey] = str_replace($char  , $SEC_CHARS['to'][$key], $_POST[$seckey]);
158                         }
159
160                         // Strip all other out
161                         $_POST[$seckey] = strip_tags($_POST[$seckey]);
162                 }
163         }
164
165         // ... and finally cookies
166         foreach ($_COOKIE as $seckey => $secvalue) {
167                 if (is_array($secvalue)) {
168                         // Throw arrays away...
169                         unset($_COOKIE[$seckey]);
170                 } else {
171                         // Only variables are allowed (non-array) but we secure them all!
172                         foreach ($SEC_CHARS['from'] as $key => $char) {
173                                 // Pass all through
174                                 $_COOKIE[$seckey] = str_replace($char  , $SEC_CHARS['to'][$key], $_COOKIE[$seckey]);
175                         }
176
177                         // Strip all other out
178                         $_COOKIE[$seckey] = strip_tags($_COOKIE[$seckey]);
179                 }
180         }
181 }
182
183 // Activate caching or transparent compressing when it is not already done
184 if (!defined('_OB_CACHING')) {
185         if (phpversion() >= '4.0.4pl1' && (strstr(getenv('HTTP_USER_AGENT'),'compatible') || (strstr(getenv('HTTP_USER_AGENT'), "Mozilla")))) {
186                 if ((extension_loaded('zlib')) && (function_exists('ob_start'))) {
187                         // Start caching
188                         define('_OB_CACHING', "on");
189                         ob_start();
190                 } else {
191                         // Extension not loaded or required function is missing
192                         define('_OB_CACHING', "404");
193                 }
194         } else {
195                 // Old PHP version
196                 define('_OB_CACHING', "old");
197         }
198 }
199
200 // At last secure the $_SERVER['PHP_SELF'] element
201 $_SERVER['PHP_SELF'] = secureString($_SERVER['PHP_SELF']);
202
203 // Split it up into path and filename
204 $SELF_DIR  = dirname($_SERVER['PHP_SELF']);
205 $SELF_FILE = basename($_SERVER['PHP_SELF']);
206
207 // Check for a .php inside the $SELF_DIR...
208 while (ereg(".php", $SELF_DIR)) {
209         // Correct the dirname
210         $SELF_DIR = substr($SELF_DIR, 0, (strpos($SELF_DIR, ".php") + 4));
211         // Rewrite filename...
212         $SELF_FILE = basename($SELF_DIR);
213         // ... and dirname
214         $SELF_DIR = dirname($SELF_DIR);
215 }
216
217 // Put both together again and let's pray it is secured now...
218 $_SERVER['PHP_SELF'] = $SELF_DIR."/".$SELF_FILE;
219
220 // Remove uneccessary variables
221 unset($SELF_DIR);
222 unset($SELF_FILE);
223
224 // Security system loaded...
225 define('__SECURITY', "1");
226
227 //
228 ?>