| <?php |
| /** |
| * CodeIgniter |
| * |
| * An open source application development framework for PHP 5.2.4 or newer |
| * |
| * NOTICE OF LICENSE |
| * |
| * Licensed under the Open Software License version 3.0 |
| * |
| * This source file is subject to the Open Software License (OSL 3.0) that is |
| * bundled with this package in the files license.txt / license.rst. It is |
| * also available through the world wide web at this URL: |
| * http://opensource.org/licenses/OSL-3.0 |
| * If you did not receive a copy of the license and are unable to obtain it |
| * through the world wide web, please send an email to |
| * licensing@ellislab.com so we can send you a copy immediately. |
| * |
| * @package CodeIgniter |
| * @author EllisLab Dev Team |
| * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
| * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
| * @link http://codeigniter.com |
| * @since Version 1.0 |
| * @filesource |
| */ |
| defined('BASEPATH') OR exit('No direct script access allowed'); |
| |
| /** |
| * CodeIgniter Security Helpers |
| * |
| * @package CodeIgniter |
| * @subpackage Helpers |
| * @category Helpers |
| * @author EllisLab Dev Team |
| * @link http://codeigniter.com/user_guide/helpers/security_helper.html |
| */ |
| |
| // ------------------------------------------------------------------------ |
| |
| if ( ! function_exists('xss_clean')) |
| { |
| /** |
| * XSS Filtering |
| * |
| * @param string |
| * @param bool whether or not the content is an image file |
| * @return string |
| */ |
| function xss_clean($str, $is_image = FALSE) |
| { |
| return get_instance()->security->xss_clean($str, $is_image); |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| if ( ! function_exists('sanitize_filename')) |
| { |
| /** |
| * Sanitize Filename |
| * |
| * @param string |
| * @return string |
| */ |
| function sanitize_filename($filename) |
| { |
| return get_instance()->security->sanitize_filename($filename); |
| } |
| } |
| |
| // -------------------------------------------------------------------- |
| |
| if ( ! function_exists('do_hash')) |
| { |
| /** |
| * Hash encode a string |
| * |
| * @todo Remove in version 3.1+. |
| * @deprecated 3.0.0 Use PHP's native hash() instead. |
| * @param string $str |
| * @param string $type = 'sha1' |
| * @return string |
| */ |
| function do_hash($str, $type = 'sha1') |
| { |
| if ( ! in_array(strtolower($type), hash_algos())) |
| { |
| $type = 'md5'; |
| } |
| |
| return hash($type, $str); |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| if ( ! function_exists('strip_image_tags')) |
| { |
| /** |
| * Strip Image Tags |
| * |
| * @param string |
| * @return string |
| */ |
| function strip_image_tags($str) |
| { |
| return get_instance()->security->strip_image_tags($str); |
| } |
| } |
| |
| // ------------------------------------------------------------------------ |
| |
| if ( ! function_exists('encode_php_tags')) |
| { |
| /** |
| * Convert PHP tags to entities |
| * |
| * @param string |
| * @return string |
| */ |
| function encode_php_tags($str) |
| { |
| return str_replace(array('<?', '?>'), array('<?', '?>'), $str); |
| } |
| } |
| |
| /* End of file security_helper.php */ |
| /* Location: ./system/helpers/security_helper.php */ |