12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- class CI_Security {
-
- public $filename_bad_chars = array(
- '../', '<!--', '-->', '<', '>',
- "'", '"', '&', '$', '#',
- '{', '}', '[', ']', '=',
- ';', '?', '%20', '%22',
- '%3c',
- '%253c',
- '%3e',
- '%0e',
- '%28',
- '%29',
- '%2528',
- '%26',
- '%24',
- '%3f',
- '%3b',
- '%3d'
- );
-
- public $charset = 'UTF-8';
-
- protected $_xss_hash;
-
- protected $_csrf_hash;
-
- protected $_csrf_expire = 7200;
-
- protected $_csrf_token_name = 'ci_csrf_token';
-
- protected $_csrf_cookie_name = 'ci_csrf_token';
-
- protected $_never_allowed_str = array(
- 'document.cookie' => '[removed]',
- '(document).cookie' => '[removed]',
- 'document.write' => '[removed]',
- '(document).write' => '[removed]',
- '.parentNode' => '[removed]',
- '.innerHTML' => '[removed]',
- '-moz-binding' => '[removed]',
- '<!--' => '<!--',
- '-->' => '-->',
- '<![CDATA[' => '<![CDATA[',
- '<comment>' => '<comment>',
- '<%' => '<%'
- );
-
- protected $_never_allowed_regex = array(
- 'javascript\s*:',
- '(\(?document\)?|\(?window\)?(\.document)?)\.(location|on\w*)',
- 'expression\s*(\(|&\#40;)',
- 'vbscript\s*:',
- 'wscript\s*:',
- 'jscript\s*:',
- 'vbs\s*:',
- 'Redirect\s+30\d',
- "([\"'])?data\s*:[^\\1]*?base64[^\\1]*?,[^\\1]*?\\1?"
- );
-
- public function __construct()
- {
-
- if (config_item('csrf_protection'))
- {
-
- foreach (array('csrf_expire', 'csrf_token_name', 'csrf_cookie_name') as $key)
- {
- if (NULL !== ($val = config_item($key)))
- {
- $this->{'_'.$key} = $val;
- }
- }
-
- if ($cookie_prefix = config_item('cookie_prefix'))
- {
- $this->_csrf_cookie_name = $cookie_prefix.$this->_csrf_cookie_name;
- }
-
- $this->_csrf_set_hash();
- }
- $this->charset = strtoupper(config_item('charset'));
- log_message('info', 'Security Class Initialized');
- }
-
-
- public function csrf_verify()
- {
-
- if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST')
- {
- return $this->csrf_set_cookie();
- }
-
- if ($exclude_uris = config_item('csrf_exclude_uris'))
- {
- $uri = load_class('URI', 'core');
- foreach ($exclude_uris as $excluded)
- {
- if (preg_match('#^'.$excluded.'$#i'.(UTF8_ENABLED ? 'u' : ''), $uri->uri_string()))
- {
- return $this;
- }
- }
- }
-
- $valid = isset($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name])
- && is_string($_POST[$this->_csrf_token_name]) && is_string($_COOKIE[$this->_csrf_cookie_name])
- && hash_equals($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name]);
-
- unset($_POST[$this->_csrf_token_name]);
-
- if (config_item('csrf_regenerate'))
- {
-
- unset($_COOKIE[$this->_csrf_cookie_name]);
- $this->_csrf_hash = NULL;
- }
- $this->_csrf_set_hash();
- $this->csrf_set_cookie();
- if ($valid !== TRUE)
- {
- $this->csrf_show_error();
- }
- log_message('info', 'CSRF token verified');
- return $this;
- }
-
-
- public function csrf_set_cookie()
- {
- $expire = time() + $this->_csrf_expire;
- $secure_cookie = (bool) config_item('cookie_secure');
- if ($secure_cookie && ! is_https())
- {
- return FALSE;
- }
- setcookie(
- $this->_csrf_cookie_name,
- $this->_csrf_hash,
- $expire,
- config_item('cookie_path'),
- config_item('cookie_domain'),
- $secure_cookie,
- config_item('cookie_httponly')
- );
- log_message('info', 'CSRF cookie sent');
- return $this;
- }
-
-
- public function csrf_show_error()
- {
- show_error('The action you have requested is not allowed.', 403);
- }
-
-
- public function get_csrf_hash()
- {
- return $this->_csrf_hash;
- }
-
-
- public function get_csrf_token_name()
- {
- return $this->_csrf_token_name;
- }
-
-
- public function xss_clean($str, $is_image = FALSE)
- {
-
- if (is_array($str))
- {
- foreach ($str as $key => &$value)
- {
- $str[$key] = $this->xss_clean($value);
- }
- return $str;
- }
-
- $str = remove_invisible_characters($str);
-
- if (stripos($str, '%') !== false)
- {
- do
- {
- $oldstr = $str;
- $str = rawurldecode($str);
- $str = preg_replace_callback('#%(?:\s*[0-9a-f]){2,}#i', array($this, '_urldecodespaces'), $str);
- }
- while ($oldstr !== $str);
- unset($oldstr);
- }
-
- $str = preg_replace_callback("/[^a-z0-9>]+[a-z0-9]+=([\'\"]).*?\\1/si", array($this, '_convert_attribute'), $str);
- $str = preg_replace_callback('/<\w+.*/si', array($this, '_decode_entity'), $str);
-
- $str = remove_invisible_characters($str);
-
- $str = str_replace("\t", ' ', $str);
-
- $converted_string = $str;
-
- $str = $this->_do_never_allowed($str);
-
- if ($is_image === TRUE)
- {
-
-
-
- $str = preg_replace('/<\?(php)/i', '<?\\1', $str);
- }
- else
- {
- $str = str_replace(array('<?', '?'.'>'), array('<?', '?>'), $str);
- }
-
- $words = array(
- 'javascript', 'expression', 'vbscript', 'jscript', 'wscript',
- 'vbs', 'script', 'base64', 'applet', 'alert', 'document',
- 'write', 'cookie', 'window', 'confirm', 'prompt', 'eval'
- );
- foreach ($words as $word)
- {
- $word = implode('\s*', str_split($word)).'\s*';
-
-
- $str = preg_replace_callback('#('.substr($word, 0, -3).')(\W)#is', array($this, '_compact_exploded_words'), $str);
- }
-
- do
- {
- $original = $str;
- if (preg_match('/<a/i', $str))
- {
- $str = preg_replace_callback('#<a(?:rea)?[^a-z0-9>]+([^>]*?)(?:>|$)#si', array($this, '_js_link_removal'), $str);
- }
- if (preg_match('/<img/i', $str))
- {
- $str = preg_replace_callback('#<img[^a-z0-9]+([^>]*?)(?:\s?/?>|$)#si', array($this, '_js_img_removal'), $str);
- }
- if (preg_match('/script|xss/i', $str))
- {
- $str = preg_replace('#</*(?:script|xss).*?>#si', '[removed]', $str);
- }
- }
- while ($original !== $str);
- unset($original);
-
- $pattern = '#'
- .'<((?<slash>/*\s*)((?<tagName>[a-z0-9]+)(?=[^a-z0-9]|$)|.+)'
- .'[^\s\042\047a-z0-9>/=]*'
-
- .'(?<attributes>(?:[\s\042\047/=]*'
- .'[^\s\042\047>/=]+'
-
- .'(?:\s*='
- .'(?:[^\s\042\047=><`]+|\s*\042[^\042]*\042|\s*\047[^\047]*\047|\s*(?U:[^\s\042\047=><`]*))'
- .')?'
- .')*)'
- .'[^>]*)(?<closeTag>\>)?#isS';
-
-
-
- do
- {
- $old_str = $str;
- $str = preg_replace_callback($pattern, array($this, '_sanitize_naughty_html'), $str);
- }
- while ($old_str !== $str);
- unset($old_str);
-
- $str = preg_replace(
- '#(alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)\((.*?)\)#si',
- '\\1\\2(\\3)',
- $str
- );
-
-
- $str = preg_replace(
- '#(alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)`(.*?)`#si',
- '\\1\\2`\\3`',
- $str
- );
-
-
-
- $str = $this->_do_never_allowed($str);
-
- if ($is_image === TRUE)
- {
- return ($str === $converted_string);
- }
- return $str;
- }
-
-
- public function xss_hash()
- {
- if ($this->_xss_hash === NULL)
- {
- $rand = $this->get_random_bytes(16);
- $this->_xss_hash = ($rand === FALSE)
- ? md5(uniqid(mt_rand(), TRUE))
- : bin2hex($rand);
- }
- return $this->_xss_hash;
- }
-
-
- public function get_random_bytes($length)
- {
- if (empty($length) OR ! ctype_digit((string) $length))
- {
- return FALSE;
- }
- if (function_exists('random_bytes'))
- {
- try
- {
-
- return random_bytes((int) $length);
- }
- catch (Exception $e)
- {
-
-
- log_message('error', $e->getMessage());
- return FALSE;
- }
- }
-
- if (defined('MCRYPT_DEV_URANDOM') && ($output = mcrypt_create_iv($length, MCRYPT_DEV_URANDOM)) !== FALSE)
- {
- return $output;
- }
- if (is_readable('/dev/urandom') && ($fp = fopen('/dev/urandom', 'rb')) !== FALSE)
- {
-
- is_php('5.4') && stream_set_chunk_size($fp, $length);
- $output = fread($fp, $length);
- fclose($fp);
- if ($output !== FALSE)
- {
- return $output;
- }
- }
- if (function_exists('openssl_random_pseudo_bytes'))
- {
- return openssl_random_pseudo_bytes($length);
- }
- return FALSE;
- }
-
-
- public function entity_decode($str, $charset = NULL)
- {
- if (strpos($str, '&') === FALSE)
- {
- return $str;
- }
- static $_entities;
- isset($charset) OR $charset = $this->charset;
- $flag = is_php('5.4')
- ? ENT_COMPAT | ENT_HTML5
- : ENT_COMPAT;
- if ( ! isset($_entities))
- {
- $_entities = array_map('strtolower', get_html_translation_table(HTML_ENTITIES, $flag, $charset));
-
-
- if ($flag === ENT_COMPAT)
- {
- $_entities[':'] = ':';
- $_entities['('] = '(';
- $_entities[')'] = ')';
- $_entities["\n"] = '
';
- $_entities["\t"] = '	';
- }
- }
- do
- {
- $str_compare = $str;
-
- if (preg_match_all('/&[a-z]{2,}(?![a-z;])/i', $str, $matches))
- {
- $replace = array();
- $matches = array_unique(array_map('strtolower', $matches[0]));
- foreach ($matches as &$match)
- {
- if (($char = array_search($match.';', $_entities, TRUE)) !== FALSE)
- {
- $replace[$match] = $char;
- }
- }
- $str = str_replace(array_keys($replace), array_values($replace), $str);
- }
-
- $str = html_entity_decode(
- preg_replace('/(&#(?:x0*[0-9a-f]{2,5}(?![0-9a-f;])|(?:0*\d{2,4}(?![0-9;]))))/iS', '$1;', $str),
- $flag,
- $charset
- );
- if ($flag === ENT_COMPAT)
- {
- $str = str_replace(array_values($_entities), array_keys($_entities), $str);
- }
- }
- while ($str_compare !== $str);
- return $str;
- }
-
-
- public function sanitize_filename($str, $relative_path = FALSE)
- {
- $bad = $this->filename_bad_chars;
- if ( ! $relative_path)
- {
- $bad[] = './';
- $bad[] = '/';
- }
- $str = remove_invisible_characters($str, FALSE);
- do
- {
- $old = $str;
- $str = str_replace($bad, '', $str);
- }
- while ($old !== $str);
- return stripslashes($str);
- }
-
-
- public function strip_image_tags($str)
- {
- return preg_replace(
- array(
- '#<img[\s/]+.*?src\s*=\s*(["\'])([^\\1]+?)\\1.*?\>#i',
- '#<img[\s/]+.*?src\s*=\s*?(([^\s"\'=<>`]+)).*?\>#i'
- ),
- '\\2',
- $str
- );
- }
-
-
- protected function _urldecodespaces($matches)
- {
- $input = $matches[0];
- $nospaces = preg_replace('#\s+#', '', $input);
- return ($nospaces === $input)
- ? $input
- : rawurldecode($nospaces);
- }
-
-
- protected function _compact_exploded_words($matches)
- {
- return preg_replace('/\s+/s', '', $matches[1]).$matches[2];
- }
-
-
- protected function _sanitize_naughty_html($matches)
- {
- static $naughty_tags = array(
- 'alert', 'area', 'prompt', 'confirm', 'applet', 'audio', 'basefont', 'base', 'behavior', 'bgsound',
- 'blink', 'body', 'embed', 'expression', 'form', 'frameset', 'frame', 'head', 'html', 'ilayer',
- 'iframe', 'input', 'button', 'select', 'isindex', 'layer', 'link', 'meta', 'keygen', 'object',
- 'plaintext', 'style', 'script', 'textarea', 'title', 'math', 'video', 'svg', 'xml', 'xss'
- );
- static $evil_attributes = array(
- 'on\w+', 'style', 'xmlns', 'formaction', 'form', 'xlink:href', 'FSCommand', 'seekSegmentTime'
- );
-
- if (empty($matches['closeTag']))
- {
- return '<'.$matches[1];
- }
-
- elseif (in_array(strtolower($matches['tagName']), $naughty_tags, TRUE))
- {
- return '<'.$matches[1].'>';
- }
-
- elseif (isset($matches['attributes']))
- {
-
- $attributes = array();
-
- $attributes_pattern = '#'
- .'(?<name>[^\s\042\047>/=]+)'
-
- .'(?:\s*=(?<value>[^\s\042\047=><`]+|\s*\042[^\042]*\042|\s*\047[^\047]*\047|\s*(?U:[^\s\042\047=><`]*)))'
- .'#i';
-
- $is_evil_pattern = '#^('.implode('|', $evil_attributes).')$#i';
-
- do
- {
-
-
-
- $matches['attributes'] = preg_replace('#^[^a-z]+#i', '', $matches['attributes']);
- if ( ! preg_match($attributes_pattern, $matches['attributes'], $attribute, PREG_OFFSET_CAPTURE))
- {
-
- break;
- }
- if (
-
- preg_match($is_evil_pattern, $attribute['name'][0])
-
- OR (trim($attribute['value'][0]) === '')
- )
- {
- $attributes[] = 'xss=removed';
- }
- else
- {
- $attributes[] = $attribute[0][0];
- }
- $matches['attributes'] = substr($matches['attributes'], $attribute[0][1] + strlen($attribute[0][0]));
- }
- while ($matches['attributes'] !== '');
- $attributes = empty($attributes)
- ? ''
- : ' '.implode(' ', $attributes);
- return '<'.$matches['slash'].$matches['tagName'].$attributes.'>';
- }
- return $matches[0];
- }
-
-
- protected function _js_link_removal($match)
- {
- return str_replace(
- $match[1],
- preg_replace(
- '#href=.*?(?:(?:alert|prompt|confirm)(?:\(|&\#40;|`|&\#96;)|javascript:|livescript:|mocha:|charset=|window\.|\(?document\)?\.|\.cookie|<script|<xss|d\s*a\s*t\s*a\s*:)#si',
- '',
- $this->_filter_attributes($match[1])
- ),
- $match[0]
- );
- }
-
-
- protected function _js_img_removal($match)
- {
- return str_replace(
- $match[1],
- preg_replace(
- '#src=.*?(?:(?:alert|prompt|confirm|eval)(?:\(|&\#40;|`|&\#96;)|javascript:|livescript:|mocha:|charset=|window\.|\(?document\)?\.|\.cookie|<script|<xss|base64\s*,)#si',
- '',
- $this->_filter_attributes($match[1])
- ),
- $match[0]
- );
- }
-
-
- protected function _convert_attribute($match)
- {
- return str_replace(array('>', '<', '\\'), array('>', '<', '\\\\'), $match[0]);
- }
-
-
- protected function _filter_attributes($str)
- {
- $out = '';
- if (preg_match_all('#\s*[a-z\-]+\s*=\s*(\042|\047)([^\\1]*?)\\1#is', $str, $matches))
- {
- foreach ($matches[0] as $match)
- {
- $out .= preg_replace('#/\*.*?\*/#s', '', $match);
- }
- }
- return $out;
- }
-
-
- protected function _decode_entity($match)
- {
-
-
- $match = preg_replace('|\&([a-z\_0-9\-]+)\=([a-z\_0-9\-/]+)|i', $this->xss_hash().'\\1=\\2', $match[0]);
-
- return str_replace(
- $this->xss_hash(),
- '&',
- $this->entity_decode($match, $this->charset)
- );
- }
-
-
- protected function _do_never_allowed($str)
- {
- $str = str_replace(array_keys($this->_never_allowed_str), $this->_never_allowed_str, $str);
- foreach ($this->_never_allowed_regex as $regex)
- {
- $str = preg_replace('#'.$regex.'#is', '[removed]', $str);
- }
- return $str;
- }
-
-
- protected function _csrf_set_hash()
- {
- if ($this->_csrf_hash === NULL)
- {
-
-
-
-
- if (isset($_COOKIE[$this->_csrf_cookie_name]) && is_string($_COOKIE[$this->_csrf_cookie_name])
- && preg_match('#^[0-9a-f]{32}$#iS', $_COOKIE[$this->_csrf_cookie_name]) === 1)
- {
- return $this->_csrf_hash = $_COOKIE[$this->_csrf_cookie_name];
- }
- $rand = $this->get_random_bytes(16);
- $this->_csrf_hash = ($rand === FALSE)
- ? md5(uniqid(mt_rand(), TRUE))
- : bin2hex($rand);
- }
- return $this->_csrf_hash;
- }
- }
|