blob: 8c08468bd4e59477a2b17584c6163523046a40d9 [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
Derek Jones7a3b96e2008-06-04 21:01:56 +0000649 for ($i = 0, $wordlen = strlen($word); $i < $wordlen; $i++)
Derek Allarda72b60d2007-01-31 23:56:11 +0000650 {
651 $temp .= substr($word, $i, 1)."\s*";
652 }
Derek Jones9f23e7c2008-05-30 20:00:11 +0000653
Derek Jones01f72ca2007-05-04 18:19:17 +0000654 // We only want to do this when it is followed by a non-word character
655 // That way valid stuff like "dealer to" does not become "dealerto"
Derek Jones9f23e7c2008-05-30 20:00:11 +0000656 $str = preg_replace_callback('#('.substr($temp, 0, -3).')(\W)#is', array($this, '_compact_exploded_words'), $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000657 }
Derek Allard15dcf492008-05-12 21:37:04 +0000658
Derek Allarda72b60d2007-01-31 23:56:11 +0000659 /*
660 * Remove disallowed Javascript in links or img tags
Derek Jonesbd08d842008-05-20 15:07:27 +0000661 * We used to do some version comparisons and use of stripos for PHP5, but it is dog slow compared
662 * to these simplified non-capturing preg_match(), especially if the pattern exists in the string
paulburdick391eb032007-06-27 22:58:24 +0000663 */
664 do
665 {
666 $original = $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000667
Derek Jonesbd08d842008-05-20 15:07:27 +0000668 if (preg_match("/<a/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000669 {
Derek Jones908ecc62008-05-21 19:53:40 +0000670 $str = preg_replace_callback("#<a.*(>|<|$)#si", array($this, '_js_link_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000671 }
Derek Allard15dcf492008-05-12 21:37:04 +0000672
Derek Jonesbd08d842008-05-20 15:07:27 +0000673 if (preg_match("/<img/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000674 {
Derek Jones908ecc62008-05-21 19:53:40 +0000675 $str = preg_replace_callback("#<img.*(>|<|$)#si", array($this, '_js_img_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000676 }
Derek Allard15dcf492008-05-12 21:37:04 +0000677
Derek Jonesbd08d842008-05-20 15:07:27 +0000678 if (preg_match("/script/i", $str) OR preg_match("/xss/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000679 {
680 $str = preg_replace("#</*(script|xss).*?\>#si", "", $str);
681 }
paulburdick391eb032007-06-27 22:58:24 +0000682 }
683 while($original != $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000684
paulburdick391eb032007-06-27 22:58:24 +0000685 unset($original);
Derek Allarda72b60d2007-01-31 23:56:11 +0000686
687 /*
688 * Remove JavaScript Event Handlers
689 *
690 * Note: This code is a little blunt. It removes
691 * the event handler and anything up to the closing >,
692 * but it's unlikely to be a problem.
693 *
Derek Allard15dcf492008-05-12 21:37:04 +0000694 */
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000695 $event_handlers = array('on\w*','xmlns');
Derek Jones245038d2008-05-15 21:58:07 +0000696
697 if ($is_image === TRUE)
698 {
699 /*
700 * Adobe Photoshop puts XML metadata into JFIF images, including namespacing,
701 * so we have to allow this for images. -Paul
702 */
703 unset($event_handlers[array_search('xmlns', $event_handlers)]);
704 }
705
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000706 $str = preg_replace("#<([^><]+)(".implode('|', $event_handlers).")(\s*=\s*[^><]*)([><]*)#i", "<\\1\\4", $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000707 /*
708 * Sanitize naughty HTML elements
709 *
710 * If a tag containing any of the words in the list
711 * below is found, the tag gets converted to entities.
712 *
713 * So this: <blink>
714 * Becomes: &lt;blink&gt;
715 *
Derek Allard15dcf492008-05-12 21:37:04 +0000716 */
Derek Jonesbd08d842008-05-20 15:07:27 +0000717 $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 +0000718 $str = preg_replace_callback('#<(/*\s*)('.$naughty.')([^><]*)([><]*)#is', array($this, '_sanitize_naughty_html'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000719
Derek Allarda72b60d2007-01-31 23:56:11 +0000720 /*
721 * Sanitize naughty scripting elements
722 *
723 * Similar to above, only instead of looking for
724 * tags it looks for PHP and JavaScript commands
725 * that are disallowed. Rather than removing the
726 * code, it simply converts the parenthesis to entities
727 * rendering the code un-executable.
728 *
729 * For example: eval('some code')
730 * Becomes: eval&#40;'some code'&#41;
731 *
732 */
paulburdick033ef022007-06-26 21:52:52 +0000733 $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 +0000734
Derek Allarda72b60d2007-01-31 23:56:11 +0000735 /*
736 * Final clean up
737 *
738 * This adds a bit of extra precaution in case
739 * something got through the above filters
740 *
Derek Allard15dcf492008-05-12 21:37:04 +0000741 */
Derek Jones000ab692008-05-13 14:46:38 +0000742 foreach ($this->never_allowed_str as $key => $val)
Derek Allarda72b60d2007-01-31 23:56:11 +0000743 {
Derek Jones48bb32a2007-07-12 13:10:42 +0000744 $str = str_replace($key, $val, $str);
745 }
Derek Jones000ab692008-05-13 14:46:38 +0000746
747 foreach ($this->never_allowed_regex as $key => $val)
Derek Jones48bb32a2007-07-12 13:10:42 +0000748 {
Derek Jones63fc5fe2008-05-15 20:13:14 +0000749 $str = preg_replace("#".$key."#i", $val, $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000750 }
Derek Allard15dcf492008-05-12 21:37:04 +0000751
Derek Jones63fc5fe2008-05-15 20:13:14 +0000752 /*
753 * Images are Handled in a Special Way
754 * - Essentially, we want to know that after all of the character conversion is done whether
755 * any unwanted, likely XSS, code was found. If not, we return TRUE, as the image is clean.
756 * However, if the string post-conversion does not matched the string post-removal of XSS,
757 * then it fails, as there was unwanted XSS code found and removed/changed during processing.
758 */
Derek Allard15dcf492008-05-12 21:37:04 +0000759
Derek Jones63fc5fe2008-05-15 20:13:14 +0000760 if ($is_image === TRUE)
761 {
762 if ($str == $converted_string)
763 {
764 return TRUE;
765 }
766 else
767 {
768 return FALSE;
769 }
770 }
Derek Jones908ecc62008-05-21 19:53:40 +0000771
Derek Jones63fc5fe2008-05-15 20:13:14 +0000772 /*
773 * If something changed after character conversion, we can be fairly confident that something
774 * malicious was removed, so let's take no chances that the attacker is counting on specific
775 * mutations taking place to allow a new attack to reveal itself. So say we all.
776 */
777 if ($converted_string != $str)
778 {
Derek Jones908ecc62008-05-21 19:53:40 +0000779 $str = $this->xss_clean($str, $is_image, ++$loops, $converted_string);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000780 }
781
Derek Allarda72b60d2007-01-31 23:56:11 +0000782 log_message('debug', "XSS Filtering completed");
783 return $str;
784 }
785
786 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000787
Derek Jones01f72ca2007-05-04 18:19:17 +0000788 /**
Derek Jones53437de2008-05-12 18:07:08 +0000789 * Random Hash for protecting URLs
790 *
791 * @access public
792 * @return string
793 */
794 function xss_hash()
Derek Allard15dcf492008-05-12 21:37:04 +0000795 {
Derek Jones53437de2008-05-12 18:07:08 +0000796 if ($this->xss_hash == '')
797 {
798 if (phpversion() >= 4.2)
799 mt_srand();
800 else
801 mt_srand(hexdec(substr(md5(microtime()), -8)) & 0x7fffffff);
Derek Allard15dcf492008-05-12 21:37:04 +0000802
Derek Jones53437de2008-05-12 18:07:08 +0000803 $this->xss_hash = md5(time() + mt_rand(0, 1999999999));
804 }
Derek Allard15dcf492008-05-12 21:37:04 +0000805
Derek Jones53437de2008-05-12 18:07:08 +0000806 return $this->xss_hash;
807 }
808
809 // --------------------------------------------------------------------
Derek Jonese3332b02008-05-13 14:44:32 +0000810
811 /**
Derek Jones9f23e7c2008-05-30 20:00:11 +0000812 * Compact Exploded Words
813 *
814 * Callback function for xss_clean() to remove whitespace from
815 * things like j a v a s c r i p t
816 *
817 * @access public
818 * @param type
819 * @return type
820 */
821 function _compact_exploded_words($matches)
822 {
823 return preg_replace('/\s+/s', '', $matches[1]).$matches[2];
824 }
825
826 // --------------------------------------------------------------------
827
828 /**
Derek Jonese3332b02008-05-13 14:44:32 +0000829 * Sanitize Naughty HTML
830 *
831 * Callback function for xss_clean() to remove naughty HTML elements
832 *
833 * @access private
834 * @param array
835 * @return string
836 */
837 function _sanitize_naughty_html($matches)
838 {
839 // encode opening brace
840 $str = '&lt;'.$matches[1].$matches[2].$matches[3];
841
842 // encode captured opening or closing brace to prevent recursive vectors
Derek Jones908ecc62008-05-21 19:53:40 +0000843 $str .= str_replace(array('>', '<'), array('&gt;', '&lt;'), $matches[4]);
Derek Jonesbd08d842008-05-20 15:07:27 +0000844
Derek Jonese3332b02008-05-13 14:44:32 +0000845 return $str;
846 }
847
848 // --------------------------------------------------------------------
849
Derek Jones53437de2008-05-12 18:07:08 +0000850 /**
Derek Jones01f72ca2007-05-04 18:19:17 +0000851 * JS Link Removal
852 *
853 * Callback function for xss_clean() to sanitize links
854 * This limits the PCRE backtracks, making it more performance friendly
855 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
856 * PHP 5.2+ on link-heavy strings
857 *
858 * @access private
859 * @param array
860 * @return string
861 */
862 function _js_link_removal($match)
863 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000864 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 +0000865 }
Derek Allard15dcf492008-05-12 21:37:04 +0000866
Derek Jones01f72ca2007-05-04 18:19:17 +0000867 /**
868 * JS Image Removal
869 *
870 * Callback function for xss_clean() to sanitize image tags
871 * This limits the PCRE backtracks, making it more performance friendly
872 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
873 * PHP 5.2+ on image tag heavy strings
874 *
875 * @access private
876 * @param array
877 * @return string
878 */
879 function _js_img_removal($match)
880 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000881 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 +0000882 }
Derek Allarda72b60d2007-01-31 23:56:11 +0000883
Derek Jones01f72ca2007-05-04 18:19:17 +0000884 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000885
Derek Jones303c9cb2007-07-12 19:12:37 +0000886 /**
887 * Attribute Conversion
888 *
889 * Used as a callback for XSS Clean
890 *
891 * @access public
892 * @param array
893 * @return string
894 */
Derek Jones908ecc62008-05-21 19:53:40 +0000895 function _convert_attribute($match)
Derek Jones303c9cb2007-07-12 19:12:37 +0000896 {
Derek Jones908ecc62008-05-21 19:53:40 +0000897 return str_replace(array('>', '<'), array('&gt;', '&lt;'), $match[0]);
Derek Jones303c9cb2007-07-12 19:12:37 +0000898 }
Derek Allard15dcf492008-05-12 21:37:04 +0000899
Derek Jones303c9cb2007-07-12 19:12:37 +0000900 // --------------------------------------------------------------------
901
902 /**
903 * HTML Entity Decode Callback
904 *
905 * Used as a callback for XSS Clean
906 *
907 * @access public
908 * @param array
909 * @return string
910 */
911 function _html_entity_decode_callback($match)
912 {
Derek Jones6159d1d2007-07-16 13:04:46 +0000913 global $CFG;
914 $charset = $CFG->item('charset');
Derek Jones303c9cb2007-07-12 19:12:37 +0000915
916 return $this->_html_entity_decode($match[0], strtoupper($charset));
917 }
918
919 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000920
Derek Allarda72b60d2007-01-31 23:56:11 +0000921 /**
922 * HTML Entities Decode
923 *
924 * This function is a replacement for html_entity_decode()
925 *
926 * In some versions of PHP the native function does not work
927 * when UTF-8 is the specified character set, so this gives us
928 * a work-around. More info here:
929 * http://bugs.php.net/bug.php?id=25670
930 *
931 * @access private
932 * @param string
933 * @param string
934 * @return string
935 */
936 /* -------------------------------------------------
937 /* Replacement for html_entity_decode()
938 /* -------------------------------------------------*/
Derek Allard15dcf492008-05-12 21:37:04 +0000939
Derek Allarda72b60d2007-01-31 23:56:11 +0000940 /*
941 NOTE: html_entity_decode() has a bug in some PHP versions when UTF-8 is the
942 character set, and the PHP developers said they were not back porting the
943 fix to versions other than PHP 5.x.
944 */
Derek Jones303c9cb2007-07-12 19:12:37 +0000945 function _html_entity_decode($str, $charset='UTF-8')
Derek Allarda72b60d2007-01-31 23:56:11 +0000946 {
947 if (stristr($str, '&') === FALSE) return $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000948
Derek Allarda72b60d2007-01-31 23:56:11 +0000949 // The reason we are not using html_entity_decode() by itself is because
950 // while it is not technically correct to leave out the semicolon
951 // at the end of an entity most browsers will still interpret the entity
952 // correctly. html_entity_decode() does not convert entities without
953 // semicolons, so we are left with our own little solution here. Bummer.
Derek Allard15dcf492008-05-12 21:37:04 +0000954
Derek Allarda72b60d2007-01-31 23:56:11 +0000955 if (function_exists('html_entity_decode') && (strtolower($charset) != 'utf-8' OR version_compare(phpversion(), '5.0.0', '>=')))
956 {
957 $str = html_entity_decode($str, ENT_COMPAT, $charset);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000958 $str = preg_replace('~&#x(0*[0-9a-f]{2,5})~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000959 return preg_replace('~&#([0-9]{2,4})~e', 'chr(\\1)', $str);
960 }
Derek Allard15dcf492008-05-12 21:37:04 +0000961
Derek Allarda72b60d2007-01-31 23:56:11 +0000962 // Numeric Entities
Derek Jones63fc5fe2008-05-15 20:13:14 +0000963 $str = preg_replace('~&#x(0*[0-9a-f]{2,5});{0,1}~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000964 $str = preg_replace('~&#([0-9]{2,4});{0,1}~e', 'chr(\\1)', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000965
Derek Allarda72b60d2007-01-31 23:56:11 +0000966 // Literal Entities - Slightly slow so we do another check
967 if (stristr($str, '&') === FALSE)
968 {
969 $str = strtr($str, array_flip(get_html_translation_table(HTML_ENTITIES)));
970 }
Derek Allard15dcf492008-05-12 21:37:04 +0000971
Derek Allarda72b60d2007-01-31 23:56:11 +0000972 return $str;
973 }
974
975}
976// END Input class
Derek Jones53437de2008-05-12 18:07:08 +0000977
978/* End of file Input.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +0000979/* Location: ./system/libraries/Input.php */