]>
src.bluestatic.org Git - isso.git/blob - Input.php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Blue Static ISSO Framework
5 || # Copyright (c)2005-2008 Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
23 * Input sanitizer (Input.php)
29 * Input cleaning type constant
34 define('TYPE_INT', 1);
39 define('TYPE_UINT', 2);
44 define('TYPE_FLOAT', 4);
49 define('TYPE_BOOL', 8);
54 define('TYPE_STR', 16);
57 * String - deliberate unclean
59 define('TYPE_STRUN', 32);
62 * No cleaning - here for use in API
64 define('TYPE_NONE', 64);
67 * Macro for using DB->escape_binary() without cleaning - used in API
69 define('TYPE_BIN', 128);
75 * This class is responsible for cleaning input.
78 * @copyright Copyright (c)2005 - 2008, Blue Static
85 * An array of sanitized variables that have been cleaned for HTML tag openers and double quotes
91 * If we are running with magic_quotes_gpc on or off
94 private $magicquotes = 0;
97 * Constructor: set instance variables and execute input cleaning
99 public function __construct()
102 $this->magicquotes
= get_magic_quotes_gpc();
103 set_magic_quotes_runtime(0);
105 // some debug info that's always useful
106 BSApp
::debug('magic_quotes_gpc = ' . $this->magicquotes
);
107 BSApp
::debug('register_globals = ' . ini_get('register_globals'));
109 $this->_sanitizeInputData();
113 * Recursive XSS cleaner
115 * @param mixed Unsanitized REQUEST data
117 * @return mixed Sanitized data
119 private function _sanitizeDataRecursive($data)
121 foreach ($data as $key => $value)
123 if (is_array($value))
125 $data["$key"] = $this->_sanitizeDataRecursive($value);
129 if ($this->magicquotes)
131 $value = str_replace("\'
", "'", $value);
133 $data["$key"] = $this->sanitize($value);
140 * Simple way to protect against HTML attacks with Unicode support
142 * @param string Unsanitzed text
144 * @return string Properly protected text that only encodes potential threats
146 public function sanitize($text)
148 if ($this->magicquotes)
150 return str_replace(array('<', '>', '\"
', '"'), array('<', '>', '"', '"'), $text);
154 return str_replace(array('<', '>', '"'), array('<
;', '>
;', '"
;'), $text);
159 * Unicode-safe entity encoding system; similar to sanitize()
161 * @param string Unsanitized text
163 * @return string Unicode-safe sanitized text with entities preserved
165 public function entityEncode($text)
167 $text = str_replace('&', '&
;', $text);
168 $text = $this->sanitize($text);
173 * Takes text that has been processed for HTML and unsanitizes it
175 * @param string Text that needs to be turned back into HTML
177 * @return string Unsanitized text
179 public function unsanitize($text)
181 return str_replace(array('<
;', '>
;', '"
;'), array('<', '>', '"'), $text);
185 * Smart addslashes() that only applies itself it the Magic Quotes GPC
186 * is off. This should only be run on database query values that come
187 * from ISSO->in[] input; data that needs sanitization should be run
188 * through Db->escapeString()
190 * @param string Some string
191 * @param bool Force magic quotes to be off
193 * @return string String that has slashes added
195 public function escape($str, $force = true)
198 if ($this->magicquotes && !$force)
202 return $db->escapeString(str_replace(array("\'
", '\"'), array("'", '"'), $str));
210 return $db->escapeString($str);
212 return addslashes($str);
217 * Runs through all of the input data and sanitizes it.
219 private function _sanitizeInputData()
221 $this->in = $this->_sanitizeDataRecursive(array_merge($_GET, $_POST, $_COOKIE));
225 * Sanitize function for something other than a string (which
226 * everything is sanitized for if you use _sanitizeInputData(). Cleaned
227 * data is placed back into Input->in; this makes it so you don't have
228 * to constantly intval() [etc.] data.
230 * @param array Array of elements to clean as varname => type
232 public function inputCleanArray($vars)
234 foreach ($vars as $varname => $type)
236 $this->inputClean($varname, $type);
241 * Sanitize function that does a single variable as oppoesd to an array
242 * (see inputCleanArray() for more details)
244 * @param string Variable name in ISSO->in[]
245 * @param integer Sanitization type constant
247 public function inputClean($varname, $type)
249 if (isset($this->in["$varname"]))
251 $this->in
["$varname"] = $this->clean($this->in["$varname"], $type);
255 $this->in
["$varname"] = $this->clean(null, $type);
258 return $this->in["$varname"];
262 * Runs Input->escape() on a variable on Input->in[]. This is just a
263 * short-hand wrapper so that queries can be shortened. When this is used,
264 * the actual value in Input->in[] is not changed, only the return value
267 * @param string Input variable
269 * @return string Escaped input
271 public function inputEscape($varname)
273 if (isset($this->in
["$varname"]))
275 return $this->escape($this->in["$varname"]);
279 return $this->escape(null);
284 * Cleaning function that does the work for inputClean(); this is
285 * moved here so it can be used to clean things that aren't in
289 * @param integer Sanitization type constant
291 * @return mixed Cleaned data
293 public function clean($value, $type)
295 if (is_array($value))
297 return $this->_cleanArray($value, $type);
300 if ($type == TYPE_INT
)
302 $value = intval($value);
304 else if ($type == TYPE_UINT
)
306 $value = (($val = intval($value)) < 0 ? 0 : $val);
308 else if ($type == TYPE_FLOAT
)
310 $value = floatval($value);
312 else if ($type == TYPE_BOOL
)
314 $value = (bool)$value;
316 else if ($type == TYPE_STR
)
320 else if ($type == TYPE_STRUN
)
322 $value = $this->unsanitize($value);
324 else if ($type == TYPE_NONE
)
326 if ($this->magicquotes
)
328 $value = str_replace(array('\"', "\'"), array('"', "'"), $value);
335 else if ($type == TYPE_BIN
)
341 throw new Exception('Invalid clean type specified in BSInput::clean()');
349 * Recursion function for Input->clean()
351 * @param array Uncleaned array
352 * @param integer Sanitization type constant
354 * @return array Cleaned array of data
356 private function _cleanArray($array, $type)
358 foreach ($array as $key => $value)
360 $array["$key"] = $this->clean($value, $type);
367 * Returns the lowercase version of the HTTP method (post or get)
369 * @return string HTTP method
371 public function getHttpMethod()
373 $method = strtolower($_SERVER['REQUEST_METHOD']);
374 if (!in_array($method, array('get', 'post')))
376 throw new Exception('Invalid server request method: ' . $method);
382 * Checks to see if a POST refer is actually from us
384 public function checkPostReferer()
386 if ($this->getHttpMethod() == 'post')
388 $host = ($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_ENV['HTTP_HOST'];
390 if ($host && $_SERVER['HTTP_REFERER'])
392 $parts = parse_url($_SERVER['HTTP_REFERER']);
393 $ourhost = $parts['host'] . (isset($parts['port']) ? ":$parts[port
]" : '');
395 if ($ourhost != $host)
397 throw new Exception('No external hosts are allowed to POST to this application');
400 BSApp::debug('remote post check = ok');
404 BSApp::debug('remote post check = FAILED');