blob: 50b4d823d250a294f016292abc7d376acec3ae62 [file] [log] [blame]
Derek Jones0b59f272008-05-13 04:22:33 +00001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allarda72b60d2007-01-31 23:56:11 +00002/**
Derek Allardd2df9bc2007-04-15 17:41:17 +00003 * CodeIgniter
Derek Allarda72b60d2007-01-31 23:56:11 +00004 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
Derek Allard3d879d52008-01-18 19:41:32 +00008 * @author ExpressionEngine Dev Team
Derek Allardd2df9bc2007-04-15 17:41:17 +00009 * @copyright Copyright (c) 2006, EllisLab, Inc.
Derek Jones7a9193a2008-01-21 18:39:20 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
Derek Allarda72b60d2007-01-31 23:56:11 +000012 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * Input Class
20 *
21 * Pre-processes global input data for security
22 *
23 * @package CodeIgniter
24 * @subpackage Libraries
25 * @category Input
Derek Allard3d879d52008-01-18 19:41:32 +000026 * @author ExpressionEngine Dev Team
Derek Jones7a9193a2008-01-21 18:39:20 +000027 * @link http://codeigniter.com/user_guide/libraries/input.html
Derek Allarda72b60d2007-01-31 23:56:11 +000028 */
29class CI_Input {
30 var $use_xss_clean = FALSE;
Derek Jones53437de2008-05-12 18:07:08 +000031 var $xss_hash = '';
Derek Allarda72b60d2007-01-31 23:56:11 +000032 var $ip_address = FALSE;
33 var $user_agent = FALSE;
34 var $allow_get_array = FALSE;
Derek Jonese3332b02008-05-13 14:44:32 +000035
36 /* never allowed, string replacement */
37 var $never_allowed_str = array(
38 'document.cookie' => '[removed]',
39 'document.write' => '[removed]',
40 '.parentNode' => '[removed]',
41 '.innerHTML' => '[removed]',
42 'window.location' => '[removed]',
43 '-moz-binding' => '[removed]',
44 '<!--' => '&lt;!--',
45 '-->' => '--&gt;',
46 '<![CDATA[' => '&lt;![CDATA['
47 );
48 /* never allowed, regex replacement */
49 var $never_allowed_regex = array(
50 "javascript\s*:" => '[removed]',
51 "expression\s*\(" => '[removed]', // CSS and IE
52 "Redirect\s+302" => '[removed]'
53 );
54
Derek Allarda72b60d2007-01-31 23:56:11 +000055 /**
56 * Constructor
57 *
58 * Sets whether to globally enable the XSS processing
59 * and whether to allow the $_GET array
60 *
61 * @access public
Derek Allard15dcf492008-05-12 21:37:04 +000062 */
Derek Allarda72b60d2007-01-31 23:56:11 +000063 function CI_Input()
Derek Allard15dcf492008-05-12 21:37:04 +000064 {
Derek Allarda72b60d2007-01-31 23:56:11 +000065 log_message('debug', "Input Class Initialized");
Derek Allard15dcf492008-05-12 21:37:04 +000066
Derek Allarda72b60d2007-01-31 23:56:11 +000067 $CFG =& load_class('Config');
68 $this->use_xss_clean = ($CFG->item('global_xss_filtering') === TRUE) ? TRUE : FALSE;
Derek Allard15dcf492008-05-12 21:37:04 +000069 $this->allow_get_array = ($CFG->item('enable_query_strings') === TRUE) ? TRUE : FALSE;
Derek Allarda72b60d2007-01-31 23:56:11 +000070 $this->_sanitize_globals();
71 }
Derek Allard15dcf492008-05-12 21:37:04 +000072
Derek Allarda72b60d2007-01-31 23:56:11 +000073 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +000074
Derek Allarda72b60d2007-01-31 23:56:11 +000075 /**
76 * Sanitize Globals
77 *
78 * This function does the following:
79 *
80 * Unsets $_GET data (if query strings are not enabled)
81 *
82 * Unsets all globals if register_globals is enabled
83 *
84 * Standardizes newline characters to \n
85 *
86 * @access private
87 * @return void
88 */
89 function _sanitize_globals()
90 {
Derek Jonesd85a11e2008-01-24 20:48:07 +000091 // Would kind of be "wrong" to unset any of these GLOBALS
92 $protected = array('_SERVER', '_GET', '_POST', '_FILES', '_REQUEST', '_SESSION', '_ENV', 'GLOBALS', 'HTTP_RAW_POST_DATA',
93 'system_folder', 'application_folder', 'BM', 'EXT', 'CFG', 'URI', 'RTR', 'OUT', 'IN');
Derek Allard15dcf492008-05-12 21:37:04 +000094
Derek Jones0ea06fd2008-02-05 15:23:51 +000095 // Unset globals for security.
Rick Ellisbb2041d2007-06-09 00:16:13 +000096 // This is effectively the same as register_globals = off
Derek Jones0ea06fd2008-02-05 15:23:51 +000097 foreach (array($_GET, $_POST, $_COOKIE, $_SERVER, $_FILES, $_ENV, (isset($_SESSION) && is_array($_SESSION)) ? $_SESSION : array()) as $global)
Derek Allarda72b60d2007-01-31 23:56:11 +000098 {
Derek Jones0b59f272008-05-13 04:22:33 +000099 if ( ! is_array($global))
Derek Allarda72b60d2007-01-31 23:56:11 +0000100 {
Derek Jones0b59f272008-05-13 04:22:33 +0000101 if ( ! in_array($global, $protected))
paulburdick8816aaa2007-06-27 23:07:36 +0000102 {
Derek Jones0ea06fd2008-02-05 15:23:51 +0000103 unset($GLOBALS[$global]);
paulburdick8816aaa2007-06-27 23:07:36 +0000104 }
Derek Allarda72b60d2007-01-31 23:56:11 +0000105 }
106 else
107 {
108 foreach ($global as $key => $val)
109 {
Derek Jones0b59f272008-05-13 04:22:33 +0000110 if ( ! in_array($key, $protected))
paulburdick8816aaa2007-06-27 23:07:36 +0000111 {
Derek Jones0ea06fd2008-02-05 15:23:51 +0000112 unset($GLOBALS[$key]);
113 }
Derek Allard15dcf492008-05-12 21:37:04 +0000114
Derek Jones0ea06fd2008-02-05 15:23:51 +0000115 if (is_array($val))
116 {
117 foreach($val as $k => $v)
118 {
Derek Jones0b59f272008-05-13 04:22:33 +0000119 if ( ! in_array($k, $protected))
Derek Jones0ea06fd2008-02-05 15:23:51 +0000120 {
121 unset($GLOBALS[$k]);
122 }
123 }
paulburdick8816aaa2007-06-27 23:07:36 +0000124 }
Derek Allard15dcf492008-05-12 21:37:04 +0000125 }
Derek Allarda72b60d2007-01-31 23:56:11 +0000126 }
127 }
128
129 // Is $_GET data allowed? If not we'll set the $_GET to an empty array
130 if ($this->allow_get_array == FALSE)
131 {
132 $_GET = array();
133 }
Rick Ellis112569d2007-02-26 19:19:08 +0000134 else
135 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000136 $_GET = $this->_clean_input_data($_GET);
Rick Ellis112569d2007-02-26 19:19:08 +0000137 }
Derek Allard15dcf492008-05-12 21:37:04 +0000138
Derek Allarda72b60d2007-01-31 23:56:11 +0000139 // Clean $_POST Data
Derek Jones144cb5b2008-06-04 19:38:00 +0000140 $_POST = $this->_clean_input_data($_POST);
141
Derek Allarda72b60d2007-01-31 23:56:11 +0000142 // Clean $_COOKIE Data
Derek Jones144cb5b2008-06-04 19:38:00 +0000143 $_COOKIE = $this->_clean_input_data($_COOKIE);
Derek Allard15dcf492008-05-12 21:37:04 +0000144
Derek Allarda72b60d2007-01-31 23:56:11 +0000145 log_message('debug', "Global POST and COOKIE data sanitized");
Derek Allard15dcf492008-05-12 21:37:04 +0000146 }
147
Derek Allarda72b60d2007-01-31 23:56:11 +0000148 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000149
Derek Allarda72b60d2007-01-31 23:56:11 +0000150 /**
151 * Clean Input Data
152 *
153 * This is a helper function. It escapes data and
154 * standardizes newline characters to \n
155 *
156 * @access private
157 * @param string
158 * @return string
Derek Allard15dcf492008-05-12 21:37:04 +0000159 */
Derek Allarda72b60d2007-01-31 23:56:11 +0000160 function _clean_input_data($str)
161 {
162 if (is_array($str))
163 {
164 $new_array = array();
165 foreach ($str as $key => $val)
166 {
167 $new_array[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
168 }
169 return $new_array;
170 }
Derek Allard15dcf492008-05-12 21:37:04 +0000171
Rick Ellisbb2041d2007-06-09 00:16:13 +0000172 // We strip slashes if magic quotes is on to keep things consistent
173 if (get_magic_quotes_gpc())
174 {
175 $str = stripslashes($str);
176 }
Derek Allard15dcf492008-05-12 21:37:04 +0000177
Rick Ellisbb2041d2007-06-09 00:16:13 +0000178 // Should we filter the input data?
Derek Allarda72b60d2007-01-31 23:56:11 +0000179 if ($this->use_xss_clean === TRUE)
180 {
181 $str = $this->xss_clean($str);
182 }
Derek Allard15dcf492008-05-12 21:37:04 +0000183
Derek Allarda72b60d2007-01-31 23:56:11 +0000184 // Standardize newlines
Derek Jones0b59f272008-05-13 04:22:33 +0000185 if (strpos($str, "\r") !== FALSE)
186 {
187 $str = str_replace(array("\r\n", "\r"), "\n", $str);
188 }
189
190 return $str;
Derek Allarda72b60d2007-01-31 23:56:11 +0000191 }
Derek Allard15dcf492008-05-12 21:37:04 +0000192
Derek Allarda72b60d2007-01-31 23:56:11 +0000193 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000194
Derek Allarda72b60d2007-01-31 23:56:11 +0000195 /**
196 * Clean Keys
197 *
198 * This is a helper function. To prevent malicious users
199 * from trying to exploit keys we make sure that keys are
200 * only named with alpha-numeric text and a few other items.
201 *
202 * @access private
203 * @param string
204 * @return string
205 */
206 function _clean_input_keys($str)
Derek Allard15dcf492008-05-12 21:37:04 +0000207 {
Derek Jones0b59f272008-05-13 04:22:33 +0000208 if ( ! preg_match("/^[a-z0-9:_\/-]+$/i", $str))
Derek Allarda72b60d2007-01-31 23:56:11 +0000209 {
210 exit('Disallowed Key Characters.');
211 }
Rick Ellisbb2041d2007-06-09 00:16:13 +0000212
Derek Allarda72b60d2007-01-31 23:56:11 +0000213 return $str;
214 }
Rick Ellis112569d2007-02-26 19:19:08 +0000215
216 // --------------------------------------------------------------------
Derek Jones144cb5b2008-06-04 19:38:00 +0000217
218 /**
219 * Fetch from array
220 *
221 * This is a helper function to retrieve values from global arrays
222 *
223 * @access private
224 * @param array
225 * @param string
226 * @param bool
227 * @return string
228 */
229 function _fetch_from_array(&$array, $index = '', $xss_clean = FALSE)
230 {
231 if ( ! isset($array[$index]))
232 {
233 return FALSE;
234 }
Derek Allard15dcf492008-05-12 21:37:04 +0000235
Derek Jones144cb5b2008-06-04 19:38:00 +0000236 if ($xss_clean === TRUE)
237 {
238 return $this->xss_clean($array[$index]);
239 }
240
241 return $array[$index];
242 }
243
244 // --------------------------------------------------------------------
245
Rick Ellis112569d2007-02-26 19:19:08 +0000246 /**
247 * Fetch an item from the GET array
248 *
249 * @access public
250 * @param string
251 * @param bool
252 * @return string
253 */
Derek Allard87d1eeb2007-03-01 13:20:43 +0000254 function get($index = '', $xss_clean = FALSE)
Derek Allard15dcf492008-05-12 21:37:04 +0000255 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000256 return $this->_fetch_from_array($_GET, $index, $xss_clean);
Rick Ellis112569d2007-02-26 19:19:08 +0000257 }
Derek Allard15dcf492008-05-12 21:37:04 +0000258
Derek Allarda72b60d2007-01-31 23:56:11 +0000259 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000260
Derek Allarda72b60d2007-01-31 23:56:11 +0000261 /**
262 * Fetch an item from the POST array
263 *
264 * @access public
265 * @param string
266 * @param bool
267 * @return string
268 */
269 function post($index = '', $xss_clean = FALSE)
Derek Allard15dcf492008-05-12 21:37:04 +0000270 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000271 return $this->_fetch_from_array($_POST, $index, $xss_clean);
Derek Allarda72b60d2007-01-31 23:56:11 +0000272 }
Derek Allard15dcf492008-05-12 21:37:04 +0000273
Derek Allarda72b60d2007-01-31 23:56:11 +0000274 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000275
Derek Allarda72b60d2007-01-31 23:56:11 +0000276 /**
277 * Fetch an item from the COOKIE array
278 *
279 * @access public
280 * @param string
281 * @param bool
282 * @return string
283 */
284 function cookie($index = '', $xss_clean = FALSE)
285 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000286 return $this->_fetch_from_array($_COOKIE, $index, $xss_clean);
Derek Allarda72b60d2007-01-31 23:56:11 +0000287 }
288
289 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000290
Derek Allarda72b60d2007-01-31 23:56:11 +0000291 /**
292 * Fetch an item from the SERVER array
293 *
294 * @access public
295 * @param string
296 * @param bool
297 * @return string
298 */
299 function server($index = '', $xss_clean = FALSE)
Derek Allard15dcf492008-05-12 21:37:04 +0000300 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000301 return $this->_fetch_from_array($_SERVER, $index, $xss_clean);
Derek Allarda72b60d2007-01-31 23:56:11 +0000302 }
Derek Allard15dcf492008-05-12 21:37:04 +0000303
Derek Allarda72b60d2007-01-31 23:56:11 +0000304 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000305
Derek Allarda72b60d2007-01-31 23:56:11 +0000306 /**
307 * Fetch the IP Address
308 *
309 * @access public
310 * @return string
311 */
312 function ip_address()
313 {
314 if ($this->ip_address !== FALSE)
315 {
316 return $this->ip_address;
317 }
Derek Allard15dcf492008-05-12 21:37:04 +0000318
Derek Allarda72b60d2007-01-31 23:56:11 +0000319 if ($this->server('REMOTE_ADDR') AND $this->server('HTTP_CLIENT_IP'))
320 {
321 $this->ip_address = $_SERVER['HTTP_CLIENT_IP'];
322 }
323 elseif ($this->server('REMOTE_ADDR'))
324 {
325 $this->ip_address = $_SERVER['REMOTE_ADDR'];
326 }
327 elseif ($this->server('HTTP_CLIENT_IP'))
328 {
329 $this->ip_address = $_SERVER['HTTP_CLIENT_IP'];
330 }
331 elseif ($this->server('HTTP_X_FORWARDED_FOR'))
332 {
333 $this->ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
334 }
Derek Allard15dcf492008-05-12 21:37:04 +0000335
Derek Allarda72b60d2007-01-31 23:56:11 +0000336 if ($this->ip_address === FALSE)
337 {
338 $this->ip_address = '0.0.0.0';
339 return $this->ip_address;
340 }
Derek Allard15dcf492008-05-12 21:37:04 +0000341
Derek Allarda72b60d2007-01-31 23:56:11 +0000342 if (strstr($this->ip_address, ','))
343 {
344 $x = explode(',', $this->ip_address);
345 $this->ip_address = end($x);
346 }
Derek Allard15dcf492008-05-12 21:37:04 +0000347
Derek Jones0b59f272008-05-13 04:22:33 +0000348 if ( ! $this->valid_ip($this->ip_address))
Derek Allarda72b60d2007-01-31 23:56:11 +0000349 {
350 $this->ip_address = '0.0.0.0';
351 }
Derek Allard15dcf492008-05-12 21:37:04 +0000352
Derek Allarda72b60d2007-01-31 23:56:11 +0000353 return $this->ip_address;
354 }
Derek Allard15dcf492008-05-12 21:37:04 +0000355
Derek Allarda72b60d2007-01-31 23:56:11 +0000356 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000357
Derek Allarda72b60d2007-01-31 23:56:11 +0000358 /**
359 * Validate IP Address
360 *
Rick Ellise666afc2007-06-11 05:03:11 +0000361 * Updated version suggested by Geert De Deckere
362 *
Derek Allarda72b60d2007-01-31 23:56:11 +0000363 * @access public
364 * @param string
365 * @return string
366 */
367 function valid_ip($ip)
368 {
Rick Ellise666afc2007-06-11 05:03:11 +0000369 $ip_segments = explode('.', $ip);
Derek Allard15dcf492008-05-12 21:37:04 +0000370
Rick Ellise666afc2007-06-11 05:03:11 +0000371 // Always 4 segments needed
372 if (count($ip_segments) != 4)
Rick Ellis112569d2007-02-26 19:19:08 +0000373 {
374 return FALSE;
375 }
Rick Ellis65e8f0e2007-06-12 03:53:21 +0000376 // IP can not start with 0
Rick Ellis39213142007-06-12 03:53:12 +0000377 if (substr($ip_segments[0], 0, 1) == '0')
Rick Ellis112569d2007-02-26 19:19:08 +0000378 {
Rick Ellise666afc2007-06-11 05:03:11 +0000379 return FALSE;
380 }
381 // Check each segment
382 foreach ($ip_segments as $segment)
383 {
384 // IP segments must be digits and can not be
385 // longer than 3 digits or greater then 255
Rick Ellisba648932007-06-12 03:39:38 +0000386 if (preg_match("/[^0-9]/", $segment) OR $segment > 255 OR strlen($segment) > 3)
Rick Ellis112569d2007-02-26 19:19:08 +0000387 {
Rick Ellise666afc2007-06-11 05:03:11 +0000388 return FALSE;
Rick Ellis112569d2007-02-26 19:19:08 +0000389 }
390 }
Derek Allard15dcf492008-05-12 21:37:04 +0000391
Rick Ellis112569d2007-02-26 19:19:08 +0000392 return TRUE;
Derek Allarda72b60d2007-01-31 23:56:11 +0000393 }
Derek Allard15dcf492008-05-12 21:37:04 +0000394
Derek Allarda72b60d2007-01-31 23:56:11 +0000395 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000396
Derek Allarda72b60d2007-01-31 23:56:11 +0000397 /**
398 * User Agent
399 *
400 * @access public
401 * @return string
402 */
403 function user_agent()
404 {
405 if ($this->user_agent !== FALSE)
406 {
407 return $this->user_agent;
408 }
Derek Allard15dcf492008-05-12 21:37:04 +0000409
Derek Jones0b59f272008-05-13 04:22:33 +0000410 $this->user_agent = ( ! isset($_SERVER['HTTP_USER_AGENT'])) ? FALSE : $_SERVER['HTTP_USER_AGENT'];
Derek Allard15dcf492008-05-12 21:37:04 +0000411
Derek Allarda72b60d2007-01-31 23:56:11 +0000412 return $this->user_agent;
413 }
Derek Allard15dcf492008-05-12 21:37:04 +0000414
Derek Allarda72b60d2007-01-31 23:56:11 +0000415 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000416
Derek Allarda72b60d2007-01-31 23:56:11 +0000417 /**
paulburdick763064b2007-06-27 23:25:55 +0000418 * Filename Security
419 *
420 * @access public
421 * @param string
422 * @return string
423 */
424 function filename_security($str)
425 {
426 $bad = array(
427 "../",
428 "./",
429 "<!--",
430 "-->",
431 "<",
432 ">",
433 "'",
434 '"',
435 '&',
436 '$',
437 '#',
438 '{',
439 '}',
440 '[',
441 ']',
442 '=',
443 ';',
444 '?',
paulburdick763064b2007-06-27 23:25:55 +0000445 "%20",
446 "%22",
447 "%3c", // <
448 "%253c", // <
449 "%3e", // >
450 "%0e", // >
451 "%28", // (
452 "%29", // )
453 "%2528", // (
454 "%26", // &
455 "%24", // $
456 "%3f", // ?
457 "%3b", // ;
458 "%3d" // =
Derek Allard15dcf492008-05-12 21:37:04 +0000459 );
460
461 return stripslashes(str_replace($bad, '', $str));
paulburdick763064b2007-06-27 23:25:55 +0000462 }
Derek Allard15dcf492008-05-12 21:37:04 +0000463
paulburdick763064b2007-06-27 23:25:55 +0000464 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000465
paulburdick763064b2007-06-27 23:25:55 +0000466 /**
Derek Allarda72b60d2007-01-31 23:56:11 +0000467 * XSS Clean
468 *
469 * Sanitizes data so that Cross Site Scripting Hacks can be
470 * prevented.  This function does a fair amount of work but
471 * it is extremely thorough, designed to prevent even the
472 * most obscure XSS attempts.  Nothing is ever 100% foolproof,
473 * of course, but I haven't been able to get anything passed
474 * the filter.
475 *
476 * Note: This function should only be used to deal with data
477 * upon submission.  It's not something that should
478 * be used for general runtime processing.
479 *
480 * This function was based in part on some code and ideas I
481 * got from Bitflux: http://blog.bitflux.ch/wiki/XSS_Prevention
482 *
483 * To help develop this script I used this great list of
484 * vulnerabilities along with a few other hacks I've
485 * harvested from examining vulnerabilities in other programs:
486 * http://ha.ckers.org/xss.html
487 *
488 * @access public
489 * @param string
490 * @return string
491 */
Derek Jones908ecc62008-05-21 19:53:40 +0000492 function xss_clean($str, $is_image = FALSE, $loops = 0, $looped_convert = '')
Derek Jones53437de2008-05-12 18:07:08 +0000493 {
494 /*
495 * Is the string an array?
496 *
497 */
498 if (is_array($str))
499 {
500 while (list($key) = each($str))
501 {
502 $str[$key] = $this->xss_clean($str[$key]);
503 }
Derek Allard15dcf492008-05-12 21:37:04 +0000504
Derek Jones53437de2008-05-12 18:07:08 +0000505 return $str;
506 }
Derek Jones908ecc62008-05-21 19:53:40 +0000507
Derek Jones63fc5fe2008-05-15 20:13:14 +0000508 /*
509 * Runaway loop prevention. If the text has had to be examined this many times
510 * I think it's safe to say that it is best to simply ignore it.
511 */
512 if ($loops > 9)
513 {
514 return '';
515 }
Derek Allard15dcf492008-05-12 21:37:04 +0000516
Derek Allarda72b60d2007-01-31 23:56:11 +0000517 /*
518 * Remove Null Characters
519 *
520 * This prevents sandwiching null characters
521 * between ascii characters, like Java\0script.
522 *
523 */
Derek Allardc1acb412008-06-04 20:58:03 +0000524 $str = preg_replace(array('/\0+/', '/(\\\\0)+/'), '', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000525
526 /*
Derek Jones53437de2008-05-12 18:07:08 +0000527 * Protect GET variables in URLs
528 */
529
530 // 901119URL5918AMP18930PROTECT8198
531
532 $str = preg_replace('|\&([a-z\_0-9]+)\=([a-z\_0-9]+)|i', $this->xss_hash()."\\1=\\2", $str);
533
534 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000535 * Validate standard character entities
536 *
537 * Add a semicolon if missing. We do this to enable
538 * the conversion of entities to ASCII later.
539 *
540 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000541 $str = preg_replace('#(&\#?[0-9a-z]+)[\x00-\x20]*;?#i', "\\1;", $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000542
Derek Allarda72b60d2007-01-31 23:56:11 +0000543 /*
Derek Jones48bb32a2007-07-12 13:10:42 +0000544 * Validate UTF16 two byte encoding (x00)
Derek Allarda72b60d2007-01-31 23:56:11 +0000545 *
546 * Just as above, adds a semicolon if missing.
547 *
548 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000549 $str = preg_replace('#(&\#x?)([0-9A-F]+);?#i',"\\1\\2;",$str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000550
551 /*
Derek Jones53437de2008-05-12 18:07:08 +0000552 * Un-Protect GET variables in URLs
553 */
Derek Jones53437de2008-05-12 18:07:08 +0000554 $str = str_replace($this->xss_hash(), '&', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000555
Derek Jones53437de2008-05-12 18:07:08 +0000556 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000557 * URL Decode
558 *
559 * Just in case stuff like this is submitted:
560 *
561 * <a href="http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D">Google</a>
562 *
Derek Jonesab32a422008-02-04 22:02:11 +0000563 * Note: Use rawurldecode() so it does not remove plus signs
Derek Allarda72b60d2007-01-31 23:56:11 +0000564 *
Derek Allard15dcf492008-05-12 21:37:04 +0000565 */
Derek Jonesab32a422008-02-04 22:02:11 +0000566 $str = rawurldecode($str);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000567
Derek Allarda72b60d2007-01-31 23:56:11 +0000568 /*
Derek Jones303c9cb2007-07-12 19:12:37 +0000569 * Convert character entities to ASCII
Derek Allarda72b60d2007-01-31 23:56:11 +0000570 *
571 * This permits our tests below to work reliably.
572 * We only convert entities that are within tags since
573 * these are the ones that will pose security problems.
574 *
575 */
Derek Allard15dcf492008-05-12 21:37:04 +0000576
Derek Jones908ecc62008-05-21 19:53:40 +0000577 $str = preg_replace_callback("/[a-z]+=([\'\"]).*?\\1/si", array($this, '_convert_attribute'), $str);
578
Derek Jones63fc5fe2008-05-15 20:13:14 +0000579 $str = preg_replace_callback("/<\w+.*?(?=>|<|$)/si", array($this, '_html_entity_decode_callback'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000580
Derek Jones48bb32a2007-07-12 13:10:42 +0000581 /*
582 * Convert all tabs to spaces
583 *
584 * This prevents strings like this: ja vascript
585 * NOTE: we deal with spaces between characters later.
586 * NOTE: preg_replace was found to be amazingly slow here on large blocks of data,
587 * so we use str_replace.
588 *
589 */
Derek Allard15dcf492008-05-12 21:37:04 +0000590
Derek Jones0b59f272008-05-13 04:22:33 +0000591 if (strpos($str, "\t") !== FALSE)
592 {
593 $str = str_replace("\t", ' ', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000594 }
Derek Jones48bb32a2007-07-12 13:10:42 +0000595
Derek Jones908ecc62008-05-21 19:53:40 +0000596 /*
597 * Check and set converted string
598 */
599 if ($looped_convert != '' && $looped_convert == $str)
600 {
601 // if we are in a loop, and the converted string is the same as the last pass,
602 // then this is going to repeat until we hit the runaway loop prevention,
603 // so we might as well stop now.
604 return '';
605 }
606 else
607 {
608 $converted_string = $str;
609 }
Derek Jones63fc5fe2008-05-15 20:13:14 +0000610
Derek Allarda72b60d2007-01-31 23:56:11 +0000611 /*
612 * Not Allowed Under Any Conditions
Derek Allard15dcf492008-05-12 21:37:04 +0000613 */
Derek Jonese3332b02008-05-13 14:44:32 +0000614
615 foreach ($this->never_allowed_str as $key => $val)
Derek Jones48bb32a2007-07-12 13:10:42 +0000616 {
617 $str = str_replace($key, $val, $str);
618 }
Derek Jonese3332b02008-05-13 14:44:32 +0000619
620 foreach ($this->never_allowed_regex as $key => $val)
Derek Allarda72b60d2007-01-31 23:56:11 +0000621 {
622 $str = preg_replace("#".$key."#i", $val, $str);
623 }
Derek Allard15dcf492008-05-12 21:37:04 +0000624
Derek Allarda72b60d2007-01-31 23:56:11 +0000625 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000626 * Makes PHP tags safe
627 *
628 * Note: XML tags are inadvertently replaced too:
629 *
630 * <?xml
631 *
632 * But it doesn't seem to pose a problem.
633 *
Derek Allard15dcf492008-05-12 21:37:04 +0000634 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000635 $str = str_replace(array('<?php', '<?PHP', '<?', '?'.'>'), array('&lt;?php', '&lt;?PHP', '&lt;?', '?&gt;'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000636
Derek Allarda72b60d2007-01-31 23:56:11 +0000637 /*
638 * Compact any exploded words
639 *
640 * This corrects words like: j a v a s c r i p t
641 * These words are compacted back to their correct state.
642 *
Derek Allard15dcf492008-05-12 21:37:04 +0000643 */
paulburdickb614d392007-06-26 21:58:56 +0000644 $words = array('javascript', 'expression', 'vbscript', 'script', 'applet', 'alert', 'document', 'write', 'cookie', 'window');
Derek Allarda72b60d2007-01-31 23:56:11 +0000645 foreach ($words as $word)
646 {
647 $temp = '';
Derek Allardc1acb412008-06-04 20:58:03 +0000648 $wordlen = strlen($word);
649
650 for ($i = 0; $i < $wordlen; $i++)
Derek Allarda72b60d2007-01-31 23:56:11 +0000651 {
652 $temp .= substr($word, $i, 1)."\s*";
653 }
Derek Jones9f23e7c2008-05-30 20:00:11 +0000654
Derek Jones01f72ca2007-05-04 18:19:17 +0000655 // We only want to do this when it is followed by a non-word character
656 // That way valid stuff like "dealer to" does not become "dealerto"
Derek Jones9f23e7c2008-05-30 20:00:11 +0000657 $str = preg_replace_callback('#('.substr($temp, 0, -3).')(\W)#is', array($this, '_compact_exploded_words'), $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000658 }
Derek Allard15dcf492008-05-12 21:37:04 +0000659
Derek Allarda72b60d2007-01-31 23:56:11 +0000660 /*
661 * Remove disallowed Javascript in links or img tags
Derek Jonesbd08d842008-05-20 15:07:27 +0000662 * We used to do some version comparisons and use of stripos for PHP5, but it is dog slow compared
663 * to these simplified non-capturing preg_match(), especially if the pattern exists in the string
paulburdick391eb032007-06-27 22:58:24 +0000664 */
665 do
666 {
667 $original = $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000668
Derek Jonesbd08d842008-05-20 15:07:27 +0000669 if (preg_match("/<a/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000670 {
Derek Jones908ecc62008-05-21 19:53:40 +0000671 $str = preg_replace_callback("#<a.*(>|<|$)#si", array($this, '_js_link_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000672 }
Derek Allard15dcf492008-05-12 21:37:04 +0000673
Derek Jonesbd08d842008-05-20 15:07:27 +0000674 if (preg_match("/<img/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000675 {
Derek Jones908ecc62008-05-21 19:53:40 +0000676 $str = preg_replace_callback("#<img.*(>|<|$)#si", array($this, '_js_img_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000677 }
Derek Allard15dcf492008-05-12 21:37:04 +0000678
Derek Jonesbd08d842008-05-20 15:07:27 +0000679 if (preg_match("/script/i", $str) OR preg_match("/xss/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000680 {
681 $str = preg_replace("#</*(script|xss).*?\>#si", "", $str);
682 }
paulburdick391eb032007-06-27 22:58:24 +0000683 }
684 while($original != $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000685
paulburdick391eb032007-06-27 22:58:24 +0000686 unset($original);
Derek Allarda72b60d2007-01-31 23:56:11 +0000687
688 /*
689 * Remove JavaScript Event Handlers
690 *
691 * Note: This code is a little blunt. It removes
692 * the event handler and anything up to the closing >,
693 * but it's unlikely to be a problem.
694 *
Derek Allard15dcf492008-05-12 21:37:04 +0000695 */
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000696 $event_handlers = array('on\w*','xmlns');
Derek Jones245038d2008-05-15 21:58:07 +0000697
698 if ($is_image === TRUE)
699 {
700 /*
701 * Adobe Photoshop puts XML metadata into JFIF images, including namespacing,
702 * so we have to allow this for images. -Paul
703 */
704 unset($event_handlers[array_search('xmlns', $event_handlers)]);
705 }
706
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000707 $str = preg_replace("#<([^><]+)(".implode('|', $event_handlers).")(\s*=\s*[^><]*)([><]*)#i", "<\\1\\4", $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000708 /*
709 * Sanitize naughty HTML elements
710 *
711 * If a tag containing any of the words in the list
712 * below is found, the tag gets converted to entities.
713 *
714 * So this: <blink>
715 * Becomes: &lt;blink&gt;
716 *
Derek Allard15dcf492008-05-12 21:37:04 +0000717 */
Derek Jonesbd08d842008-05-20 15:07:27 +0000718 $naughty = 'alert|applet|audio|basefont|base|behavior|bgsound|blink|body|embed|expression|form|frameset|frame|head|html|ilayer|iframe|input|layer|link|meta|object|plaintext|style|script|textarea|title|video|xml|xss';
Derek Jonese3332b02008-05-13 14:44:32 +0000719 $str = preg_replace_callback('#<(/*\s*)('.$naughty.')([^><]*)([><]*)#is', array($this, '_sanitize_naughty_html'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000720
Derek Allarda72b60d2007-01-31 23:56:11 +0000721 /*
722 * Sanitize naughty scripting elements
723 *
724 * Similar to above, only instead of looking for
725 * tags it looks for PHP and JavaScript commands
726 * that are disallowed. Rather than removing the
727 * code, it simply converts the parenthesis to entities
728 * rendering the code un-executable.
729 *
730 * For example: eval('some code')
731 * Becomes: eval&#40;'some code'&#41;
732 *
733 */
paulburdick033ef022007-06-26 21:52:52 +0000734 $str = preg_replace('#(alert|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)\((.*?)\)#si', "\\1\\2&#40;\\3&#41;", $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000735
Derek Allarda72b60d2007-01-31 23:56:11 +0000736 /*
737 * Final clean up
738 *
739 * This adds a bit of extra precaution in case
740 * something got through the above filters
741 *
Derek Allard15dcf492008-05-12 21:37:04 +0000742 */
Derek Jones000ab692008-05-13 14:46:38 +0000743 foreach ($this->never_allowed_str as $key => $val)
Derek Allarda72b60d2007-01-31 23:56:11 +0000744 {
Derek Jones48bb32a2007-07-12 13:10:42 +0000745 $str = str_replace($key, $val, $str);
746 }
Derek Jones000ab692008-05-13 14:46:38 +0000747
748 foreach ($this->never_allowed_regex as $key => $val)
Derek Jones48bb32a2007-07-12 13:10:42 +0000749 {
Derek Jones63fc5fe2008-05-15 20:13:14 +0000750 $str = preg_replace("#".$key."#i", $val, $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000751 }
Derek Allard15dcf492008-05-12 21:37:04 +0000752
Derek Jones63fc5fe2008-05-15 20:13:14 +0000753 /*
754 * Images are Handled in a Special Way
755 * - Essentially, we want to know that after all of the character conversion is done whether
756 * any unwanted, likely XSS, code was found. If not, we return TRUE, as the image is clean.
757 * However, if the string post-conversion does not matched the string post-removal of XSS,
758 * then it fails, as there was unwanted XSS code found and removed/changed during processing.
759 */
Derek Allard15dcf492008-05-12 21:37:04 +0000760
Derek Jones63fc5fe2008-05-15 20:13:14 +0000761 if ($is_image === TRUE)
762 {
763 if ($str == $converted_string)
764 {
765 return TRUE;
766 }
767 else
768 {
769 return FALSE;
770 }
771 }
Derek Jones908ecc62008-05-21 19:53:40 +0000772
Derek Jones63fc5fe2008-05-15 20:13:14 +0000773 /*
774 * If something changed after character conversion, we can be fairly confident that something
775 * malicious was removed, so let's take no chances that the attacker is counting on specific
776 * mutations taking place to allow a new attack to reveal itself. So say we all.
777 */
778 if ($converted_string != $str)
779 {
Derek Jones908ecc62008-05-21 19:53:40 +0000780 $str = $this->xss_clean($str, $is_image, ++$loops, $converted_string);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000781 }
782
Derek Allarda72b60d2007-01-31 23:56:11 +0000783 log_message('debug', "XSS Filtering completed");
784 return $str;
785 }
786
787 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000788
Derek Jones01f72ca2007-05-04 18:19:17 +0000789 /**
Derek Jones53437de2008-05-12 18:07:08 +0000790 * Random Hash for protecting URLs
791 *
792 * @access public
793 * @return string
794 */
795 function xss_hash()
Derek Allard15dcf492008-05-12 21:37:04 +0000796 {
Derek Jones53437de2008-05-12 18:07:08 +0000797 if ($this->xss_hash == '')
798 {
799 if (phpversion() >= 4.2)
800 mt_srand();
801 else
802 mt_srand(hexdec(substr(md5(microtime()), -8)) & 0x7fffffff);
Derek Allard15dcf492008-05-12 21:37:04 +0000803
Derek Jones53437de2008-05-12 18:07:08 +0000804 $this->xss_hash = md5(time() + mt_rand(0, 1999999999));
805 }
Derek Allard15dcf492008-05-12 21:37:04 +0000806
Derek Jones53437de2008-05-12 18:07:08 +0000807 return $this->xss_hash;
808 }
809
810 // --------------------------------------------------------------------
Derek Jonese3332b02008-05-13 14:44:32 +0000811
812 /**
Derek Jones9f23e7c2008-05-30 20:00:11 +0000813 * Compact Exploded Words
814 *
815 * Callback function for xss_clean() to remove whitespace from
816 * things like j a v a s c r i p t
817 *
818 * @access public
819 * @param type
820 * @return type
821 */
822 function _compact_exploded_words($matches)
823 {
824 return preg_replace('/\s+/s', '', $matches[1]).$matches[2];
825 }
826
827 // --------------------------------------------------------------------
828
829 /**
Derek Jonese3332b02008-05-13 14:44:32 +0000830 * Sanitize Naughty HTML
831 *
832 * Callback function for xss_clean() to remove naughty HTML elements
833 *
834 * @access private
835 * @param array
836 * @return string
837 */
838 function _sanitize_naughty_html($matches)
839 {
840 // encode opening brace
841 $str = '&lt;'.$matches[1].$matches[2].$matches[3];
842
843 // encode captured opening or closing brace to prevent recursive vectors
Derek Jones908ecc62008-05-21 19:53:40 +0000844 $str .= str_replace(array('>', '<'), array('&gt;', '&lt;'), $matches[4]);
Derek Jonesbd08d842008-05-20 15:07:27 +0000845
Derek Jonese3332b02008-05-13 14:44:32 +0000846 return $str;
847 }
848
849 // --------------------------------------------------------------------
850
Derek Jones53437de2008-05-12 18:07:08 +0000851 /**
Derek Jones01f72ca2007-05-04 18:19:17 +0000852 * JS Link Removal
853 *
854 * Callback function for xss_clean() to sanitize links
855 * This limits the PCRE backtracks, making it more performance friendly
856 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
857 * PHP 5.2+ on link-heavy strings
858 *
859 * @access private
860 * @param array
861 * @return string
862 */
863 function _js_link_removal($match)
864 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000865 return preg_replace("#href=.*?(alert\(|alert&\#40;|javascript\:|charset\=|window\.|document\.|\.cookie|<script|<xss|base64\s*,)#si", "", $match[0]);
Derek Jones01f72ca2007-05-04 18:19:17 +0000866 }
Derek Allard15dcf492008-05-12 21:37:04 +0000867
Derek Jones01f72ca2007-05-04 18:19:17 +0000868 /**
869 * JS Image Removal
870 *
871 * Callback function for xss_clean() to sanitize image tags
872 * This limits the PCRE backtracks, making it more performance friendly
873 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
874 * PHP 5.2+ on image tag heavy strings
875 *
876 * @access private
877 * @param array
878 * @return string
879 */
880 function _js_img_removal($match)
881 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000882 return preg_replace("#src=.*?(alert\(|alert&\#40;|javascript\:|charset\=|window\.|document\.|\.cookie|<script|<xss|base64\s*,)#si", "", $match[0]);
Derek Jones01f72ca2007-05-04 18:19:17 +0000883 }
Derek Allarda72b60d2007-01-31 23:56:11 +0000884
Derek Jones01f72ca2007-05-04 18:19:17 +0000885 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000886
Derek Jones303c9cb2007-07-12 19:12:37 +0000887 /**
888 * Attribute Conversion
889 *
890 * Used as a callback for XSS Clean
891 *
892 * @access public
893 * @param array
894 * @return string
895 */
Derek Jones908ecc62008-05-21 19:53:40 +0000896 function _convert_attribute($match)
Derek Jones303c9cb2007-07-12 19:12:37 +0000897 {
Derek Jones908ecc62008-05-21 19:53:40 +0000898 return str_replace(array('>', '<'), array('&gt;', '&lt;'), $match[0]);
Derek Jones303c9cb2007-07-12 19:12:37 +0000899 }
Derek Allard15dcf492008-05-12 21:37:04 +0000900
Derek Jones303c9cb2007-07-12 19:12:37 +0000901 // --------------------------------------------------------------------
902
903 /**
904 * HTML Entity Decode Callback
905 *
906 * Used as a callback for XSS Clean
907 *
908 * @access public
909 * @param array
910 * @return string
911 */
912 function _html_entity_decode_callback($match)
913 {
Derek Jones6159d1d2007-07-16 13:04:46 +0000914 global $CFG;
915 $charset = $CFG->item('charset');
Derek Jones303c9cb2007-07-12 19:12:37 +0000916
917 return $this->_html_entity_decode($match[0], strtoupper($charset));
918 }
919
920 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000921
Derek Allarda72b60d2007-01-31 23:56:11 +0000922 /**
923 * HTML Entities Decode
924 *
925 * This function is a replacement for html_entity_decode()
926 *
927 * In some versions of PHP the native function does not work
928 * when UTF-8 is the specified character set, so this gives us
929 * a work-around. More info here:
930 * http://bugs.php.net/bug.php?id=25670
931 *
932 * @access private
933 * @param string
934 * @param string
935 * @return string
936 */
937 /* -------------------------------------------------
938 /* Replacement for html_entity_decode()
939 /* -------------------------------------------------*/
Derek Allard15dcf492008-05-12 21:37:04 +0000940
Derek Allarda72b60d2007-01-31 23:56:11 +0000941 /*
942 NOTE: html_entity_decode() has a bug in some PHP versions when UTF-8 is the
943 character set, and the PHP developers said they were not back porting the
944 fix to versions other than PHP 5.x.
945 */
Derek Jones303c9cb2007-07-12 19:12:37 +0000946 function _html_entity_decode($str, $charset='UTF-8')
Derek Allarda72b60d2007-01-31 23:56:11 +0000947 {
948 if (stristr($str, '&') === FALSE) return $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000949
Derek Allarda72b60d2007-01-31 23:56:11 +0000950 // The reason we are not using html_entity_decode() by itself is because
951 // while it is not technically correct to leave out the semicolon
952 // at the end of an entity most browsers will still interpret the entity
953 // correctly. html_entity_decode() does not convert entities without
954 // semicolons, so we are left with our own little solution here. Bummer.
Derek Allard15dcf492008-05-12 21:37:04 +0000955
Derek Allarda72b60d2007-01-31 23:56:11 +0000956 if (function_exists('html_entity_decode') && (strtolower($charset) != 'utf-8' OR version_compare(phpversion(), '5.0.0', '>=')))
957 {
958 $str = html_entity_decode($str, ENT_COMPAT, $charset);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000959 $str = preg_replace('~&#x(0*[0-9a-f]{2,5})~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000960 return preg_replace('~&#([0-9]{2,4})~e', 'chr(\\1)', $str);
961 }
Derek Allard15dcf492008-05-12 21:37:04 +0000962
Derek Allarda72b60d2007-01-31 23:56:11 +0000963 // Numeric Entities
Derek Jones63fc5fe2008-05-15 20:13:14 +0000964 $str = preg_replace('~&#x(0*[0-9a-f]{2,5});{0,1}~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000965 $str = preg_replace('~&#([0-9]{2,4});{0,1}~e', 'chr(\\1)', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000966
Derek Allarda72b60d2007-01-31 23:56:11 +0000967 // Literal Entities - Slightly slow so we do another check
968 if (stristr($str, '&') === FALSE)
969 {
970 $str = strtr($str, array_flip(get_html_translation_table(HTML_ENTITIES)));
971 }
Derek Allard15dcf492008-05-12 21:37:04 +0000972
Derek Allarda72b60d2007-01-31 23:56:11 +0000973 return $str;
974 }
975
976}
977// END Input class
Derek Jones53437de2008-05-12 18:07:08 +0000978
979/* End of file Input.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000980/* Location: ./system/libraries/Input.php */