3

我使用在 FireFox 和 Google Chrome 中正常工作的 codeigniter 启用了 csrf。但是在 IE 中,它在 Web 开发人员工具网络面板中显示此错误:

在此处输入图像描述

并详细查看:

在此处输入图像描述

我的$.post电话是:

var ctn = $.cookie('csrf_cookie');
$.post('some_path', {
    'my_token': ctn
}, function (data) {
    if (data.res == 'something') {
        //process here
    }, 'json');

当我这样做时,它的值ctn是保存 CSRF 令牌值的 cookie 正确显示console.log('ctn: '+ctn)

ctn: 78346b5d0ec105efcce796f93ecc3cbb 

任何帮助或调试更多的建议将不胜感激。

PS:我有一个vhost,我真的不知道它是否对 IE 有影响。

更新:

我已经阅读了有关 IE 中 CSRF 的问题,一些建议使用 P3P 标头,因此我将此标头添加到索引页面:

header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT');

但仍然有同样的问题。

还有其他建议吗?

4

2 回答 2

3

正如我在文章中所建议的那样。最好使用 net.tutsplus 中的帖子,标题为:Protect a CodeIgniter Application Against CSRF。这是一篇旧帖子,解决方案适用于 Codeignter 1.7.x 。然而,这是迄今为止我能找到的唯一适合 Codeigniter 2 的解决方案,以便在 Codeigniter 中实现 CSRF 保护。我们在这里遇到的主要问题是 Codeigniter 使用了 COOKIE。然而,这篇文章使用了 Codeigniter 会话,它使用起来更安全,并且适用于所有浏览器,没有任何问题。net.tutsplus 的文章适用于 AJAX 和非 AJAX 请求。

所以我的建议是,如果你没有找到解决问题的方法,你可以尝试实现这篇文章:Protect a CodeIgniter Application Against CSRF

于 2013-10-29T18:35:54.680 回答
2

感谢@John提出自己实现 CSRF 的建议,我通过了第一个问题。然而,事实证明 IE 根本没有提交发布数据(在调试之后)所以,stackoverflow 上有一个标题IE 拒绝通过 $.ajax 发送数据 的问题,要解决这个问题,你必须添加这个meta标签告诉 IE 在 IE9 兼容模式下使用 javascript。

<meta http-equiv="x-ua-compatible" content="IE=9" >

现在,对于关于使用钩子解决 csrf 的文章,它忽略了一个问题,即如果您正在使用.serializeArray()jquery 或任何等效项来提交表单,您需要修改
validate_tokens函数以检查token_name已发布数组的内部。

希望这可以拯救遇到同样问题的人

注意:在不重写 csrf 的情况下添加 meta 标签不会解决问题。

更新1:

这是我正在使用的实现:

<?php
/**
 * Description of csrf_protection
 * @author Ian Murray
 */
class Csrf_Protection {

    private $CI;
    private static $token_name = 'somename';
    private static $token;

    public function __construct() {
        $this->CI = &get_instance();
    }

/** 
 * Generates a CSRF token and stores it on session. Only one token per session is generated. 
 * This must be tied to a post-controller hook, and before the hook 
 * that calls the inject_tokens method(). 
 * 
 * @return void 
 * @author Ian Murray 
 */ 
    public function generate_token()  
    {  
          // Load session library if not loaded  
          $this->CI->load->library('session');  

          if ($this->CI->session->userdata(self::$token_name) === FALSE)  
          {  
            // Generate a token and store it on session, since old one appears to have expired.  
            self::$token = md5(uniqid() . microtime() . rand());

            $this->CI->session->set_userdata(self::$token_name, self::$token);  
          }  
          else  
          {  
            // Set it to local variable for easy access  
            self::$token = $this->CI->session->userdata(self::$token_name);  
          }  
    }  

    /** 
    * Validates a submitted token when POST request is made. 
    * 
    * @return void 
    * @author Ian Murray 
    */  
   public function validate_tokens()  
   {  
     // Is this a post request?  
     if ($_SERVER['REQUEST_METHOD'] == 'POST')  
     {  
       // Is the token field set and valid?  
       $posted_token = $this->CI->input->post(self::$token_name);  
       if($posted_token === FALSE){
           $posted_token = $this->_get_token_in_post_array($this->CI->input->post());
           $this->_check_all_post_array($posted_token);
       }
     }  
   }
   /**
   *takes the posted token and check it after multidimesional-array search
   *@params $posted_token
   *@author Mamdouh Alramadan
   */
   private function _check_all_post_array($posted_token)
   {
       if ($posted_token === 'error' || $posted_token != $this->CI->session->userdata(self::$token_name))  
       {  
         // Invalid request, send error 400.
         show_error('Request was invalid. Tokens did not match.', 400);  
       }  
   }


   /** 
    * This injects hidden tags on all POST forms with the csrf token. 
    * Also injects meta headers in <head> of output (if exists) for easy access 
    * from JS frameworks. 
    * 
    * @return void 
    * @author Ian Murray 
    */  
   public function inject_tokens()  
   {  
     $output = $this->CI->output->get_output();  

     // Inject into form  
     $output = preg_replace('/(<(form|FORM)[^>]*(method|METHOD)="(post|POST)"[^>]*>)/',  
                            '$0<input type="hidden" name="' . self::$token_name . '" value="' . self::$token . '">',   
                            $output);  

     // Inject into <head>  
     $output = preg_replace('/(<\/head>)/',  
                            '<meta name="cname" content="' . self::$token_name . '">' . "\n" . '<meta name="cval" content="' . self::$token . '">' . "\n" . '$0',   
                            $output);  

     $this->CI->output->_display($output);  
   }  


/**
 * takes the posted array and check for the token inside it 
 * @params $arr array
 * @author Mamdouh Alramadan
 */
   private function _get_token_in_post_array($arr)
   {//this function is customized to my case but it's easy to adapt
       if(is_array($arr)){
        $key = $this->_recursive_post_array_search(self::$token_name, $arr);//this will return data if token found
        if($key === 'data'){//I'm expecting the token inside data array
            $key = $this->_recursive_post_array_search(self::$token_name, $arr['data']);
            return isset($arr['data'][$key]['value'])?$arr['data'][$key]['value']:FALSE;
        }
       }
       return 'error';
   }
   //some custom function to do multi-dimensional array search, can be replaced with any other searching function.
   private function _recursive_post_array_search($needle,$haystack) {
        foreach($haystack as $key=>$value) {
            $current_key=$key;
            if($needle===$value OR (is_array($value) && $this->_recursive_post_array_search($needle,$value) !== false)) {
                return $current_key;
            }
        }
        return false;
    }

}

?>
于 2013-11-15T09:58:22.830 回答