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