blob: 0b05c54d690a617de261e42f69fb79aac6844aa1 [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 /**
Derek Allardd3ee0412008-06-20 05:39:18 +0000277 * Fetch an item from either the GET array or the POST
278 *
279 * @access public
280 * @param string The index key
281 * @param bool XSS cleaning
282 * @return string
283 */
284 function get_post($index = '', $xss_clean = FALSE)
285 {
286 if ( ! isset($_POST[$index]) )
287 {
288 return $this->get($index, $xss_clean);
289 }
290 else
291 {
292 return $this->post($index, $xss_clean);
293 }
294 }
295
296 // --------------------------------------------------------------------
297
298 /**
Derek Allarda72b60d2007-01-31 23:56:11 +0000299 * Fetch an item from the COOKIE array
300 *
301 * @access public
302 * @param string
303 * @param bool
304 * @return string
305 */
306 function cookie($index = '', $xss_clean = FALSE)
307 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000308 return $this->_fetch_from_array($_COOKIE, $index, $xss_clean);
Derek Allarda72b60d2007-01-31 23:56:11 +0000309 }
310
311 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000312
Derek Allarda72b60d2007-01-31 23:56:11 +0000313 /**
314 * Fetch an item from the SERVER array
315 *
316 * @access public
317 * @param string
318 * @param bool
319 * @return string
320 */
321 function server($index = '', $xss_clean = FALSE)
Derek Allard15dcf492008-05-12 21:37:04 +0000322 {
Derek Jones144cb5b2008-06-04 19:38:00 +0000323 return $this->_fetch_from_array($_SERVER, $index, $xss_clean);
Derek Allarda72b60d2007-01-31 23:56:11 +0000324 }
Derek Allard15dcf492008-05-12 21:37:04 +0000325
Derek Allarda72b60d2007-01-31 23:56:11 +0000326 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000327
Derek Allarda72b60d2007-01-31 23:56:11 +0000328 /**
329 * Fetch the IP Address
330 *
331 * @access public
332 * @return string
333 */
334 function ip_address()
335 {
336 if ($this->ip_address !== FALSE)
337 {
338 return $this->ip_address;
339 }
Derek Allard15dcf492008-05-12 21:37:04 +0000340
Derek Allarda72b60d2007-01-31 23:56:11 +0000341 if ($this->server('REMOTE_ADDR') AND $this->server('HTTP_CLIENT_IP'))
342 {
343 $this->ip_address = $_SERVER['HTTP_CLIENT_IP'];
344 }
345 elseif ($this->server('REMOTE_ADDR'))
346 {
347 $this->ip_address = $_SERVER['REMOTE_ADDR'];
348 }
349 elseif ($this->server('HTTP_CLIENT_IP'))
350 {
351 $this->ip_address = $_SERVER['HTTP_CLIENT_IP'];
352 }
353 elseif ($this->server('HTTP_X_FORWARDED_FOR'))
354 {
355 $this->ip_address = $_SERVER['HTTP_X_FORWARDED_FOR'];
356 }
Derek Allard15dcf492008-05-12 21:37:04 +0000357
Derek Allarda72b60d2007-01-31 23:56:11 +0000358 if ($this->ip_address === FALSE)
359 {
360 $this->ip_address = '0.0.0.0';
361 return $this->ip_address;
362 }
Derek Allard15dcf492008-05-12 21:37:04 +0000363
Derek Allarda72b60d2007-01-31 23:56:11 +0000364 if (strstr($this->ip_address, ','))
365 {
366 $x = explode(',', $this->ip_address);
367 $this->ip_address = end($x);
368 }
Derek Allard15dcf492008-05-12 21:37:04 +0000369
Derek Jones0b59f272008-05-13 04:22:33 +0000370 if ( ! $this->valid_ip($this->ip_address))
Derek Allarda72b60d2007-01-31 23:56:11 +0000371 {
372 $this->ip_address = '0.0.0.0';
373 }
Derek Allard15dcf492008-05-12 21:37:04 +0000374
Derek Allarda72b60d2007-01-31 23:56:11 +0000375 return $this->ip_address;
376 }
Derek Allard15dcf492008-05-12 21:37:04 +0000377
Derek Allarda72b60d2007-01-31 23:56:11 +0000378 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000379
Derek Allarda72b60d2007-01-31 23:56:11 +0000380 /**
381 * Validate IP Address
382 *
Rick Ellise666afc2007-06-11 05:03:11 +0000383 * Updated version suggested by Geert De Deckere
384 *
Derek Allarda72b60d2007-01-31 23:56:11 +0000385 * @access public
386 * @param string
387 * @return string
388 */
389 function valid_ip($ip)
390 {
Rick Ellise666afc2007-06-11 05:03:11 +0000391 $ip_segments = explode('.', $ip);
Derek Allard15dcf492008-05-12 21:37:04 +0000392
Rick Ellise666afc2007-06-11 05:03:11 +0000393 // Always 4 segments needed
394 if (count($ip_segments) != 4)
Rick Ellis112569d2007-02-26 19:19:08 +0000395 {
396 return FALSE;
397 }
Rick Ellis65e8f0e2007-06-12 03:53:21 +0000398 // IP can not start with 0
Rick Ellis39213142007-06-12 03:53:12 +0000399 if (substr($ip_segments[0], 0, 1) == '0')
Rick Ellis112569d2007-02-26 19:19:08 +0000400 {
Rick Ellise666afc2007-06-11 05:03:11 +0000401 return FALSE;
402 }
403 // Check each segment
404 foreach ($ip_segments as $segment)
405 {
406 // IP segments must be digits and can not be
407 // longer than 3 digits or greater then 255
Rick Ellisba648932007-06-12 03:39:38 +0000408 if (preg_match("/[^0-9]/", $segment) OR $segment > 255 OR strlen($segment) > 3)
Rick Ellis112569d2007-02-26 19:19:08 +0000409 {
Rick Ellise666afc2007-06-11 05:03:11 +0000410 return FALSE;
Rick Ellis112569d2007-02-26 19:19:08 +0000411 }
412 }
Derek Allard15dcf492008-05-12 21:37:04 +0000413
Rick Ellis112569d2007-02-26 19:19:08 +0000414 return TRUE;
Derek Allarda72b60d2007-01-31 23:56:11 +0000415 }
Derek Allard15dcf492008-05-12 21:37:04 +0000416
Derek Allarda72b60d2007-01-31 23:56:11 +0000417 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000418
Derek Allarda72b60d2007-01-31 23:56:11 +0000419 /**
420 * User Agent
421 *
422 * @access public
423 * @return string
424 */
425 function user_agent()
426 {
427 if ($this->user_agent !== FALSE)
428 {
429 return $this->user_agent;
430 }
Derek Allard15dcf492008-05-12 21:37:04 +0000431
Derek Jones0b59f272008-05-13 04:22:33 +0000432 $this->user_agent = ( ! isset($_SERVER['HTTP_USER_AGENT'])) ? FALSE : $_SERVER['HTTP_USER_AGENT'];
Derek Allard15dcf492008-05-12 21:37:04 +0000433
Derek Allarda72b60d2007-01-31 23:56:11 +0000434 return $this->user_agent;
435 }
Derek Allard15dcf492008-05-12 21:37:04 +0000436
Derek Allarda72b60d2007-01-31 23:56:11 +0000437 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000438
Derek Allarda72b60d2007-01-31 23:56:11 +0000439 /**
paulburdick763064b2007-06-27 23:25:55 +0000440 * Filename Security
441 *
442 * @access public
443 * @param string
444 * @return string
445 */
446 function filename_security($str)
447 {
448 $bad = array(
449 "../",
450 "./",
451 "<!--",
452 "-->",
453 "<",
454 ">",
455 "'",
456 '"',
457 '&',
458 '$',
459 '#',
460 '{',
461 '}',
462 '[',
463 ']',
464 '=',
465 ';',
466 '?',
paulburdick763064b2007-06-27 23:25:55 +0000467 "%20",
468 "%22",
469 "%3c", // <
470 "%253c", // <
471 "%3e", // >
472 "%0e", // >
473 "%28", // (
474 "%29", // )
475 "%2528", // (
476 "%26", // &
477 "%24", // $
478 "%3f", // ?
479 "%3b", // ;
480 "%3d" // =
Derek Allard15dcf492008-05-12 21:37:04 +0000481 );
482
483 return stripslashes(str_replace($bad, '', $str));
paulburdick763064b2007-06-27 23:25:55 +0000484 }
Derek Allard15dcf492008-05-12 21:37:04 +0000485
paulburdick763064b2007-06-27 23:25:55 +0000486 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000487
paulburdick763064b2007-06-27 23:25:55 +0000488 /**
Derek Allarda72b60d2007-01-31 23:56:11 +0000489 * XSS Clean
490 *
491 * Sanitizes data so that Cross Site Scripting Hacks can be
492 * prevented.  This function does a fair amount of work but
493 * it is extremely thorough, designed to prevent even the
494 * most obscure XSS attempts.  Nothing is ever 100% foolproof,
495 * of course, but I haven't been able to get anything passed
496 * the filter.
497 *
498 * Note: This function should only be used to deal with data
499 * upon submission.  It's not something that should
500 * be used for general runtime processing.
501 *
502 * This function was based in part on some code and ideas I
503 * got from Bitflux: http://blog.bitflux.ch/wiki/XSS_Prevention
504 *
505 * To help develop this script I used this great list of
506 * vulnerabilities along with a few other hacks I've
507 * harvested from examining vulnerabilities in other programs:
508 * http://ha.ckers.org/xss.html
509 *
510 * @access public
511 * @param string
512 * @return string
513 */
Derek Jones908ecc62008-05-21 19:53:40 +0000514 function xss_clean($str, $is_image = FALSE, $loops = 0, $looped_convert = '')
Derek Jones53437de2008-05-12 18:07:08 +0000515 {
516 /*
517 * Is the string an array?
518 *
519 */
520 if (is_array($str))
521 {
522 while (list($key) = each($str))
523 {
524 $str[$key] = $this->xss_clean($str[$key]);
525 }
Derek Allard15dcf492008-05-12 21:37:04 +0000526
Derek Jones53437de2008-05-12 18:07:08 +0000527 return $str;
528 }
Derek Jones908ecc62008-05-21 19:53:40 +0000529
Derek Jones63fc5fe2008-05-15 20:13:14 +0000530 /*
531 * Runaway loop prevention. If the text has had to be examined this many times
532 * I think it's safe to say that it is best to simply ignore it.
533 */
534 if ($loops > 9)
535 {
536 return '';
537 }
Derek Allard15dcf492008-05-12 21:37:04 +0000538
Derek Allarda72b60d2007-01-31 23:56:11 +0000539 /*
540 * Remove Null Characters
541 *
542 * This prevents sandwiching null characters
543 * between ascii characters, like Java\0script.
544 *
545 */
Derek Allardc1acb412008-06-04 20:58:03 +0000546 $str = preg_replace(array('/\0+/', '/(\\\\0)+/'), '', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000547
548 /*
Derek Jones53437de2008-05-12 18:07:08 +0000549 * Protect GET variables in URLs
550 */
551
552 // 901119URL5918AMP18930PROTECT8198
553
554 $str = preg_replace('|\&([a-z\_0-9]+)\=([a-z\_0-9]+)|i', $this->xss_hash()."\\1=\\2", $str);
555
556 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000557 * Validate standard character entities
558 *
559 * Add a semicolon if missing. We do this to enable
560 * the conversion of entities to ASCII later.
561 *
562 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000563 $str = preg_replace('#(&\#?[0-9a-z]+)[\x00-\x20]*;?#i', "\\1;", $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000564
Derek Allarda72b60d2007-01-31 23:56:11 +0000565 /*
Derek Jones48bb32a2007-07-12 13:10:42 +0000566 * Validate UTF16 two byte encoding (x00)
Derek Allarda72b60d2007-01-31 23:56:11 +0000567 *
568 * Just as above, adds a semicolon if missing.
569 *
570 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000571 $str = preg_replace('#(&\#x?)([0-9A-F]+);?#i',"\\1\\2;",$str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000572
573 /*
Derek Jones53437de2008-05-12 18:07:08 +0000574 * Un-Protect GET variables in URLs
575 */
Derek Jones53437de2008-05-12 18:07:08 +0000576 $str = str_replace($this->xss_hash(), '&', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000577
Derek Jones53437de2008-05-12 18:07:08 +0000578 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000579 * URL Decode
580 *
581 * Just in case stuff like this is submitted:
582 *
583 * <a href="http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D">Google</a>
584 *
Derek Jonesab32a422008-02-04 22:02:11 +0000585 * Note: Use rawurldecode() so it does not remove plus signs
Derek Allarda72b60d2007-01-31 23:56:11 +0000586 *
Derek Allard15dcf492008-05-12 21:37:04 +0000587 */
Derek Jonesab32a422008-02-04 22:02:11 +0000588 $str = rawurldecode($str);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000589
Derek Allarda72b60d2007-01-31 23:56:11 +0000590 /*
Derek Jones303c9cb2007-07-12 19:12:37 +0000591 * Convert character entities to ASCII
Derek Allarda72b60d2007-01-31 23:56:11 +0000592 *
593 * This permits our tests below to work reliably.
594 * We only convert entities that are within tags since
595 * these are the ones that will pose security problems.
596 *
597 */
Derek Allard15dcf492008-05-12 21:37:04 +0000598
Derek Jones908ecc62008-05-21 19:53:40 +0000599 $str = preg_replace_callback("/[a-z]+=([\'\"]).*?\\1/si", array($this, '_convert_attribute'), $str);
600
Derek Jones63fc5fe2008-05-15 20:13:14 +0000601 $str = preg_replace_callback("/<\w+.*?(?=>|<|$)/si", array($this, '_html_entity_decode_callback'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000602
Derek Jones48bb32a2007-07-12 13:10:42 +0000603 /*
604 * Convert all tabs to spaces
605 *
606 * This prevents strings like this: ja vascript
607 * NOTE: we deal with spaces between characters later.
608 * NOTE: preg_replace was found to be amazingly slow here on large blocks of data,
609 * so we use str_replace.
610 *
611 */
Derek Allard15dcf492008-05-12 21:37:04 +0000612
Derek Jones0b59f272008-05-13 04:22:33 +0000613 if (strpos($str, "\t") !== FALSE)
614 {
615 $str = str_replace("\t", ' ', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000616 }
Derek Jones48bb32a2007-07-12 13:10:42 +0000617
Derek Jones908ecc62008-05-21 19:53:40 +0000618 /*
619 * Check and set converted string
620 */
621 if ($looped_convert != '' && $looped_convert == $str)
622 {
623 // if we are in a loop, and the converted string is the same as the last pass,
624 // then this is going to repeat until we hit the runaway loop prevention,
625 // so we might as well stop now.
626 return '';
627 }
628 else
629 {
630 $converted_string = $str;
631 }
Derek Jones63fc5fe2008-05-15 20:13:14 +0000632
Derek Allarda72b60d2007-01-31 23:56:11 +0000633 /*
634 * Not Allowed Under Any Conditions
Derek Allard15dcf492008-05-12 21:37:04 +0000635 */
Derek Jonese3332b02008-05-13 14:44:32 +0000636
637 foreach ($this->never_allowed_str as $key => $val)
Derek Jones48bb32a2007-07-12 13:10:42 +0000638 {
639 $str = str_replace($key, $val, $str);
640 }
Derek Jonese3332b02008-05-13 14:44:32 +0000641
642 foreach ($this->never_allowed_regex as $key => $val)
Derek Allarda72b60d2007-01-31 23:56:11 +0000643 {
644 $str = preg_replace("#".$key."#i", $val, $str);
645 }
Derek Allard15dcf492008-05-12 21:37:04 +0000646
Derek Allarda72b60d2007-01-31 23:56:11 +0000647 /*
Derek Allarda72b60d2007-01-31 23:56:11 +0000648 * Makes PHP tags safe
649 *
650 * Note: XML tags are inadvertently replaced too:
651 *
652 * <?xml
653 *
654 * But it doesn't seem to pose a problem.
655 *
Derek Allard15dcf492008-05-12 21:37:04 +0000656 */
Derek Jones48bb32a2007-07-12 13:10:42 +0000657 $str = str_replace(array('<?php', '<?PHP', '<?', '?'.'>'), array('&lt;?php', '&lt;?PHP', '&lt;?', '?&gt;'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000658
Derek Allarda72b60d2007-01-31 23:56:11 +0000659 /*
660 * Compact any exploded words
661 *
662 * This corrects words like: j a v a s c r i p t
663 * These words are compacted back to their correct state.
664 *
Derek Allard15dcf492008-05-12 21:37:04 +0000665 */
paulburdickb614d392007-06-26 21:58:56 +0000666 $words = array('javascript', 'expression', 'vbscript', 'script', 'applet', 'alert', 'document', 'write', 'cookie', 'window');
Derek Allarda72b60d2007-01-31 23:56:11 +0000667 foreach ($words as $word)
668 {
669 $temp = '';
Derek Allardc1acb412008-06-04 20:58:03 +0000670
Derek Jones7a3b96e2008-06-04 21:01:56 +0000671 for ($i = 0, $wordlen = strlen($word); $i < $wordlen; $i++)
Derek Allarda72b60d2007-01-31 23:56:11 +0000672 {
673 $temp .= substr($word, $i, 1)."\s*";
674 }
Derek Jones9f23e7c2008-05-30 20:00:11 +0000675
Derek Jones01f72ca2007-05-04 18:19:17 +0000676 // We only want to do this when it is followed by a non-word character
677 // That way valid stuff like "dealer to" does not become "dealerto"
Derek Jones9f23e7c2008-05-30 20:00:11 +0000678 $str = preg_replace_callback('#('.substr($temp, 0, -3).')(\W)#is', array($this, '_compact_exploded_words'), $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000679 }
Derek Allard15dcf492008-05-12 21:37:04 +0000680
Derek Allarda72b60d2007-01-31 23:56:11 +0000681 /*
682 * Remove disallowed Javascript in links or img tags
Derek Jonesbd08d842008-05-20 15:07:27 +0000683 * We used to do some version comparisons and use of stripos for PHP5, but it is dog slow compared
684 * to these simplified non-capturing preg_match(), especially if the pattern exists in the string
paulburdick391eb032007-06-27 22:58:24 +0000685 */
686 do
687 {
688 $original = $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000689
Derek Jonesbd08d842008-05-20 15:07:27 +0000690 if (preg_match("/<a/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000691 {
Derek Jones908ecc62008-05-21 19:53:40 +0000692 $str = preg_replace_callback("#<a.*(>|<|$)#si", array($this, '_js_link_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000693 }
Derek Allard15dcf492008-05-12 21:37:04 +0000694
Derek Jonesbd08d842008-05-20 15:07:27 +0000695 if (preg_match("/<img/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000696 {
Derek Jones908ecc62008-05-21 19:53:40 +0000697 $str = preg_replace_callback("#<img.*(>|<|$)#si", array($this, '_js_img_removal'), $str);
Derek Jones48bb32a2007-07-12 13:10:42 +0000698 }
Derek Allard15dcf492008-05-12 21:37:04 +0000699
Derek Jonesbd08d842008-05-20 15:07:27 +0000700 if (preg_match("/script/i", $str) OR preg_match("/xss/i", $str))
Derek Jones48bb32a2007-07-12 13:10:42 +0000701 {
702 $str = preg_replace("#</*(script|xss).*?\>#si", "", $str);
703 }
paulburdick391eb032007-06-27 22:58:24 +0000704 }
705 while($original != $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000706
paulburdick391eb032007-06-27 22:58:24 +0000707 unset($original);
Derek Allarda72b60d2007-01-31 23:56:11 +0000708
709 /*
710 * Remove JavaScript Event Handlers
711 *
712 * Note: This code is a little blunt. It removes
713 * the event handler and anything up to the closing >,
714 * but it's unlikely to be a problem.
715 *
Derek Allard15dcf492008-05-12 21:37:04 +0000716 */
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000717 $event_handlers = array('on\w*','xmlns');
Derek Jones245038d2008-05-15 21:58:07 +0000718
719 if ($is_image === TRUE)
720 {
721 /*
722 * Adobe Photoshop puts XML metadata into JFIF images, including namespacing,
723 * so we have to allow this for images. -Paul
724 */
725 unset($event_handlers[array_search('xmlns', $event_handlers)]);
726 }
727
Derek Jonesc04f0fc2008-06-04 18:20:18 +0000728 $str = preg_replace("#<([^><]+)(".implode('|', $event_handlers).")(\s*=\s*[^><]*)([><]*)#i", "<\\1\\4", $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000729 /*
730 * Sanitize naughty HTML elements
731 *
732 * If a tag containing any of the words in the list
733 * below is found, the tag gets converted to entities.
734 *
735 * So this: <blink>
736 * Becomes: &lt;blink&gt;
737 *
Derek Allard15dcf492008-05-12 21:37:04 +0000738 */
Derek Jonesbd08d842008-05-20 15:07:27 +0000739 $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 +0000740 $str = preg_replace_callback('#<(/*\s*)('.$naughty.')([^><]*)([><]*)#is', array($this, '_sanitize_naughty_html'), $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000741
Derek Allarda72b60d2007-01-31 23:56:11 +0000742 /*
743 * Sanitize naughty scripting elements
744 *
745 * Similar to above, only instead of looking for
746 * tags it looks for PHP and JavaScript commands
747 * that are disallowed. Rather than removing the
748 * code, it simply converts the parenthesis to entities
749 * rendering the code un-executable.
750 *
751 * For example: eval('some code')
752 * Becomes: eval&#40;'some code'&#41;
753 *
754 */
paulburdick033ef022007-06-26 21:52:52 +0000755 $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 +0000756
Derek Allarda72b60d2007-01-31 23:56:11 +0000757 /*
758 * Final clean up
759 *
760 * This adds a bit of extra precaution in case
761 * something got through the above filters
762 *
Derek Allard15dcf492008-05-12 21:37:04 +0000763 */
Derek Jones000ab692008-05-13 14:46:38 +0000764 foreach ($this->never_allowed_str as $key => $val)
Derek Allarda72b60d2007-01-31 23:56:11 +0000765 {
Derek Jones48bb32a2007-07-12 13:10:42 +0000766 $str = str_replace($key, $val, $str);
767 }
Derek Jones000ab692008-05-13 14:46:38 +0000768
769 foreach ($this->never_allowed_regex as $key => $val)
Derek Jones48bb32a2007-07-12 13:10:42 +0000770 {
Derek Jones63fc5fe2008-05-15 20:13:14 +0000771 $str = preg_replace("#".$key."#i", $val, $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000772 }
Derek Allard15dcf492008-05-12 21:37:04 +0000773
Derek Jones63fc5fe2008-05-15 20:13:14 +0000774 /*
775 * Images are Handled in a Special Way
776 * - Essentially, we want to know that after all of the character conversion is done whether
777 * any unwanted, likely XSS, code was found. If not, we return TRUE, as the image is clean.
778 * However, if the string post-conversion does not matched the string post-removal of XSS,
779 * then it fails, as there was unwanted XSS code found and removed/changed during processing.
780 */
Derek Allard15dcf492008-05-12 21:37:04 +0000781
Derek Jones63fc5fe2008-05-15 20:13:14 +0000782 if ($is_image === TRUE)
783 {
784 if ($str == $converted_string)
785 {
786 return TRUE;
787 }
788 else
789 {
790 return FALSE;
791 }
792 }
Derek Jones908ecc62008-05-21 19:53:40 +0000793
Derek Jones63fc5fe2008-05-15 20:13:14 +0000794 /*
795 * If something changed after character conversion, we can be fairly confident that something
796 * malicious was removed, so let's take no chances that the attacker is counting on specific
797 * mutations taking place to allow a new attack to reveal itself. So say we all.
798 */
799 if ($converted_string != $str)
800 {
Derek Jones908ecc62008-05-21 19:53:40 +0000801 $str = $this->xss_clean($str, $is_image, ++$loops, $converted_string);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000802 }
803
Derek Allarda72b60d2007-01-31 23:56:11 +0000804 log_message('debug', "XSS Filtering completed");
805 return $str;
806 }
807
808 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000809
Derek Jones01f72ca2007-05-04 18:19:17 +0000810 /**
Derek Jones53437de2008-05-12 18:07:08 +0000811 * Random Hash for protecting URLs
812 *
813 * @access public
814 * @return string
815 */
816 function xss_hash()
Derek Allard15dcf492008-05-12 21:37:04 +0000817 {
Derek Jones53437de2008-05-12 18:07:08 +0000818 if ($this->xss_hash == '')
819 {
820 if (phpversion() >= 4.2)
821 mt_srand();
822 else
823 mt_srand(hexdec(substr(md5(microtime()), -8)) & 0x7fffffff);
Derek Allard15dcf492008-05-12 21:37:04 +0000824
Derek Jones53437de2008-05-12 18:07:08 +0000825 $this->xss_hash = md5(time() + mt_rand(0, 1999999999));
826 }
Derek Allard15dcf492008-05-12 21:37:04 +0000827
Derek Jones53437de2008-05-12 18:07:08 +0000828 return $this->xss_hash;
829 }
830
831 // --------------------------------------------------------------------
Derek Jonese3332b02008-05-13 14:44:32 +0000832
833 /**
Derek Jones9f23e7c2008-05-30 20:00:11 +0000834 * Compact Exploded Words
835 *
836 * Callback function for xss_clean() to remove whitespace from
837 * things like j a v a s c r i p t
838 *
839 * @access public
840 * @param type
841 * @return type
842 */
843 function _compact_exploded_words($matches)
844 {
845 return preg_replace('/\s+/s', '', $matches[1]).$matches[2];
846 }
847
848 // --------------------------------------------------------------------
849
850 /**
Derek Jonese3332b02008-05-13 14:44:32 +0000851 * Sanitize Naughty HTML
852 *
853 * Callback function for xss_clean() to remove naughty HTML elements
854 *
855 * @access private
856 * @param array
857 * @return string
858 */
859 function _sanitize_naughty_html($matches)
860 {
861 // encode opening brace
862 $str = '&lt;'.$matches[1].$matches[2].$matches[3];
863
864 // encode captured opening or closing brace to prevent recursive vectors
Derek Jones908ecc62008-05-21 19:53:40 +0000865 $str .= str_replace(array('>', '<'), array('&gt;', '&lt;'), $matches[4]);
Derek Jonesbd08d842008-05-20 15:07:27 +0000866
Derek Jonese3332b02008-05-13 14:44:32 +0000867 return $str;
868 }
869
870 // --------------------------------------------------------------------
871
Derek Jones53437de2008-05-12 18:07:08 +0000872 /**
Derek Jones01f72ca2007-05-04 18:19:17 +0000873 * JS Link Removal
874 *
875 * Callback function for xss_clean() to sanitize links
876 * This limits the PCRE backtracks, making it more performance friendly
877 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
878 * PHP 5.2+ on link-heavy strings
879 *
880 * @access private
881 * @param array
882 * @return string
883 */
884 function _js_link_removal($match)
885 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000886 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 +0000887 }
Derek Allard15dcf492008-05-12 21:37:04 +0000888
Derek Jones01f72ca2007-05-04 18:19:17 +0000889 /**
890 * JS Image Removal
891 *
892 * Callback function for xss_clean() to sanitize image tags
893 * This limits the PCRE backtracks, making it more performance friendly
894 * and prevents PREG_BACKTRACK_LIMIT_ERROR from being triggered in
895 * PHP 5.2+ on image tag heavy strings
896 *
897 * @access private
898 * @param array
899 * @return string
900 */
901 function _js_img_removal($match)
902 {
Derek Jonesbd08d842008-05-20 15:07:27 +0000903 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 +0000904 }
Derek Allarda72b60d2007-01-31 23:56:11 +0000905
Derek Jones01f72ca2007-05-04 18:19:17 +0000906 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000907
Derek Jones303c9cb2007-07-12 19:12:37 +0000908 /**
909 * Attribute Conversion
910 *
911 * Used as a callback for XSS Clean
912 *
913 * @access public
914 * @param array
915 * @return string
916 */
Derek Jones908ecc62008-05-21 19:53:40 +0000917 function _convert_attribute($match)
Derek Jones303c9cb2007-07-12 19:12:37 +0000918 {
Derek Jones908ecc62008-05-21 19:53:40 +0000919 return str_replace(array('>', '<'), array('&gt;', '&lt;'), $match[0]);
Derek Jones303c9cb2007-07-12 19:12:37 +0000920 }
Derek Allard15dcf492008-05-12 21:37:04 +0000921
Derek Jones303c9cb2007-07-12 19:12:37 +0000922 // --------------------------------------------------------------------
923
924 /**
925 * HTML Entity Decode Callback
926 *
927 * Used as a callback for XSS Clean
928 *
929 * @access public
930 * @param array
931 * @return string
932 */
933 function _html_entity_decode_callback($match)
934 {
Derek Jones6159d1d2007-07-16 13:04:46 +0000935 global $CFG;
936 $charset = $CFG->item('charset');
Derek Jones303c9cb2007-07-12 19:12:37 +0000937
938 return $this->_html_entity_decode($match[0], strtoupper($charset));
939 }
940
941 // --------------------------------------------------------------------
Derek Allard15dcf492008-05-12 21:37:04 +0000942
Derek Allarda72b60d2007-01-31 23:56:11 +0000943 /**
944 * HTML Entities Decode
945 *
946 * This function is a replacement for html_entity_decode()
947 *
948 * In some versions of PHP the native function does not work
949 * when UTF-8 is the specified character set, so this gives us
950 * a work-around. More info here:
951 * http://bugs.php.net/bug.php?id=25670
952 *
953 * @access private
954 * @param string
955 * @param string
956 * @return string
957 */
958 /* -------------------------------------------------
959 /* Replacement for html_entity_decode()
960 /* -------------------------------------------------*/
Derek Allard15dcf492008-05-12 21:37:04 +0000961
Derek Allarda72b60d2007-01-31 23:56:11 +0000962 /*
963 NOTE: html_entity_decode() has a bug in some PHP versions when UTF-8 is the
964 character set, and the PHP developers said they were not back porting the
965 fix to versions other than PHP 5.x.
966 */
Derek Jones303c9cb2007-07-12 19:12:37 +0000967 function _html_entity_decode($str, $charset='UTF-8')
Derek Allarda72b60d2007-01-31 23:56:11 +0000968 {
969 if (stristr($str, '&') === FALSE) return $str;
Derek Allard15dcf492008-05-12 21:37:04 +0000970
Derek Allarda72b60d2007-01-31 23:56:11 +0000971 // The reason we are not using html_entity_decode() by itself is because
972 // while it is not technically correct to leave out the semicolon
973 // at the end of an entity most browsers will still interpret the entity
974 // correctly. html_entity_decode() does not convert entities without
975 // semicolons, so we are left with our own little solution here. Bummer.
Derek Allard15dcf492008-05-12 21:37:04 +0000976
Derek Allarda72b60d2007-01-31 23:56:11 +0000977 if (function_exists('html_entity_decode') && (strtolower($charset) != 'utf-8' OR version_compare(phpversion(), '5.0.0', '>=')))
978 {
979 $str = html_entity_decode($str, ENT_COMPAT, $charset);
Derek Jones63fc5fe2008-05-15 20:13:14 +0000980 $str = preg_replace('~&#x(0*[0-9a-f]{2,5})~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000981 return preg_replace('~&#([0-9]{2,4})~e', 'chr(\\1)', $str);
982 }
Derek Allard15dcf492008-05-12 21:37:04 +0000983
Derek Allarda72b60d2007-01-31 23:56:11 +0000984 // Numeric Entities
Derek Jones63fc5fe2008-05-15 20:13:14 +0000985 $str = preg_replace('~&#x(0*[0-9a-f]{2,5});{0,1}~ei', 'chr(hexdec("\\1"))', $str);
Derek Allarda72b60d2007-01-31 23:56:11 +0000986 $str = preg_replace('~&#([0-9]{2,4});{0,1}~e', 'chr(\\1)', $str);
Derek Allard15dcf492008-05-12 21:37:04 +0000987
Derek Allarda72b60d2007-01-31 23:56:11 +0000988 // Literal Entities - Slightly slow so we do another check
989 if (stristr($str, '&') === FALSE)
990 {
991 $str = strtr($str, array_flip(get_html_translation_table(HTML_ENTITIES)));
992 }
Derek Allard15dcf492008-05-12 21:37:04 +0000993
Derek Allarda72b60d2007-01-31 23:56:11 +0000994 return $str;
995 }
996
997}
998// END Input class
Derek Jones53437de2008-05-12 18:07:08 +0000999
1000/* End of file Input.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +00001001/* Location: ./system/libraries/Input.php */