gpt4 book ai didi

ruby-on-rails - 使用 Rails 存储加密的 cookie

转载 作者:行者123 更新时间:2023-12-04 04:37:15 25 4
gpt4 key购买 nike

我需要在 Rails 的 cookie 中存储一小段数据(少于 10 个字符),并且我需要它是安全的。我不希望任何人能够读取该数据或注入(inject)他们自己的数据(因为这会使应用程序面临多种攻击)。我认为加密 cookie 的内容是可行的方法(我也应该签名吗?)。最好的方法是什么?

现在我正在这样做,这看起来很安全,但是对于那些比我更了解安全的人来说,许多事情看起来很安全,然后发现它并不真正安全。

我以这种方式保存 secret :

encryptor = ActiveSupport::MessageEncryptor.new(Example::Application.config.secret_token)
cookies[:secret] = {
:value => encryptor.encrypt(secret),
:domain => "example.com",
:secure => !(Rails.env.test? || Rails.env.development?)
}

然后我像这样读它:
encryptor = ActiveSupport::MessageEncryptor.new(Example::Application.config.secret_token)
secret = encryptor.decrypt(cookies[:secret])

那安全吗?有什么更好的方法吗?

更新 :我知道 Rails 的 session 以及它的安全性,通过签署 cookie 和可选地存储 session 服务器端的内容,我确实将 session 用于它的用途。但我的问题是关于存储 cookie,这是我在 session 中不想要的一条信息,但我仍然需要它是安全的。

最佳答案

  • 设置安全 cookie
    cookies.signed[:secret] = {
    :value => "foo bar",
    :domain => "example.com",
    :secure => !(Rails.env.test? || Rails.env.development?)
    }
  • 访问 cookie
    cookies.signed[:secret] # returns "foo bar"

  • cookie 使用 ActionController::Base.cookie_verifier_secret 签名.您可以设置 cookie_verifier_secret在初始化文件中。

    关于ruby-on-rails - 使用 Rails 存储加密的 cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9364962/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com