Rails Rails 中消失的 CSRF token

warmwind · Created at October 01, 2014 · Last by warmwind replied at February 26, 2016 · 6467 hits
7754

CSRF(Cross-Site Request Forgery)是一种常见的攻击手段,Rails中下面的代码帮助我们的应用来阻止CSRF攻击。

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception
end

这段代码是Rails4自动生成的,这里使用了with: :exception设置了对在handle_unverified_request使用的策略是抛出异常ActionController::InvalidAuthenticityToken。 Rails3中默认使用的reset_session。 Rails防止CSRF的机制是在表单中随机生成一个authenticity_token,同时存储于表单的隐藏域以及当前的session中,当表单提交时,而server端就可以比较这两处的是否一致来做出判断,判断请求的来源是否可靠,因为第三方是无法知道session中的token的。

# Sets the token value for the current session.
def form_authenticity_token
  session[:_csrf_token] ||= SecureRandom.base64(32)
end
<div style="margin:0;padding:0;display:inline">
  <input name="utf8" type="hidden" value="✓">
  <input name="authenticity_token" type="hidden" value="EZWDs44j5vzY+DCsgTHL0iPYiOUwaFnemwtGmo2AVRM=">
</div>

当然,这些都是正常情况,当表单要作为ajax提交,也就是data-remote=true时,情况就不同了,默认配置下,authenticityt_token不再自动生成。如果是Rails3就会发现session中的信息不见了,如果是把user_id存储在session中的,当然登录的状态就改变了。如果是Rails4,默认就会得到上面提到的InvalidAuthenticityToken异常。

#form_tag_helper.rb
def html_options_for_form(url_for_options, options)
   options.stringify_keys.tap do |html_options|
     ...
     if html_options["data-remote"] &&
        !embed_authenticity_token_in_remote_forms &&
        html_options["authenticity_token"].blank?
       # The authenticity token is taken from the meta tag in this case
       html_options["authenticity_token"] = false
     elsif html_options["authenticity_token"] == true
       # Include the default authenticity_token, which is only generated when its set to nil,
       # but we needed the true value to override the default of no authenticity_token on data-remote.
       html_options["authenticity_token"] = nil
     end
   end
 end

上面代码的5-14行可以看到生成token时的配置判断,从中也可以得到解决的两种办法: 1. 配置

config.action_view.embed_authenticity_token_in_remote_forms = true

2. 通过JS获取 其实在默认的layout中,一般会有一行<%= csrf_meta_tags %>,它的定义是:

def csrf_meta_tags
  if protect_against_forgery?
    [
      tag('meta', :name => 'csrf-param', :content => request_forgery_protection_token),
      tag('meta', :name => 'csrf-token', :content => form_authenticity_token)
    ].join("\n").html_safe
  end
end

它在页面的head中增加一个csrf-token的属性

meta content="authenticity_token" name="csrf-param" />
meta content="VY13wlC2rgGccbkxyvm7Z1WX4LKH+71vzIj+8Um0QO8=" name="csrf-token" />

这与表单渲染出的authenticity_token完全一致,所以这就给了我们通过js来给表单设置authenticity_token的办法,如下

//application.js
$('input[name=authenticity_token]').val($('meta[name=csrf-token]').attr('content'))
共收到 5 条回复
10603
luolinae86 · #1 · January 22, 2015

如果在所有ajax异步请求中,都提交csrf-token,可以直接这样设置

$.ajaxSetup({ headers: { 'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content') } });

10775
linjunzhugg · #2 · March 20, 2015

为什么当data-remote=true时,token要消失呢??

我们又要手动去传递token,这样不是很麻烦么?意义何在?

怎么印象中以前好像没这个问题

10775
linjunzhugg · #3 · March 23, 2015

怪不得印象中没有 InvalidAuthenticityToken 这个问题。

看了 http://www.alfajango.com/blog/rails-4-whats-new/

当 form 加了 remote: true 时,默认是不会有 token 存在,不过当提交时 rails.js 会自动补上这个token

96
dorayatou · #4 · February 17, 2016

为什么authenticity_token这个值各个页面都是同一个值?

7754
warmwind · #5 · February 26, 2016

@dorayatou 不会是一个值啊,每次刷新Rails都会自动再次生成