Laravel 4: Prevent multiple form submissions - CSRF Token(Laravel 4:防止多个表单提交 - CSRF Token)
问题描述
问题场景:
我正在使用 Laravel 4 创建一个博客.负责创建新博客文章的表单受到 CSRF 保护 (Laravel 文档:CSRF 保护).
I'm creating a blog with Laravel 4. The form that's responsible for the creation of new blog posts is secured by the build in CSRF protection (Laravel Docs: CSRF Protection).
到目前为止一切正常,但似乎 laravel 不会在每个请求上刷新 csrf 令牌.
Everything works fine so far, but it seems that laravel does not refresh the csrf token on every request.
出现的问题是,如果用户点击浏览器的后退按钮返回到提交的表单,输入的数据仍然存在并且用户能够重新提交"表单.这可能会为垃圾邮件发送者打开大门.
The problem that occurs is that if the user hits the back button of the browser to return to the submitted form, the entered data persists and the user is able to "re-submit" the form. This might create an open door for spammers.
这通常会被 CSRF 令牌阻止,因为它会在每次请求时刷新,但 Laravel 似乎不会那样做.
Usually this is prevented by the CSRF token, as it's being refreshed on every request, but Laravel doesn't seem to do it like that.
我使用 laravel 资源控制器"方法(Laravel 文档:资源控制器)处理表单和博客文章视图.此外,我在将提交的输入存储到数据库(MySQL)之前使用 Laravel 输入验证器.
I use the laravel "Resource Controller" approach (Laravel Docs: Resource Controllers) to handle the form and blog post views. Furthermore I use Laravels input validator before storing the submitted input in the database (MySQL).
于是产生了以下想法:
以某种方式强制 Laravel 4 在每次请求时自动重新生成 csrf
somehow force Laravel 4 to regenerate the csrf automatically on every request
生成另一个令牌并手动将其包含到表单中
generate another token and include it into the form manually
在用户会话(php 或数据库)中保存表单提交的时间戳,并在时间基准上限制新表单提交
save a timestamp of form submition in the users session (php or database) and throttle new form submissions on a time base
我个人更喜欢第一个想法,但不幸的是,我无法找到一种方法来强制 laravel 表现出我想要的样子,而不破坏Illuminate"本身(我想保持原样"能够在没有麻烦hoff"的情况下更新 laravel ^^).
Personally I prefer the first idea, but unfortunately I couldn't find a way of forcing laravel to behave how I want it to be, without hacking the "Illuminate" itself (which I want to keep "as is" to be able to update laravel without "hasslehoff" ^^).
你会推荐什么?
你自己是如何处理这个问题的?
推荐答案
我实际上也遇到了这个问题,因为我提交了多个帖子.您有两种选择:
I actually ran into this issue as well for multiple posts submissions. You have two options here:
1) 提交后生成新令牌:
1) Generate a new token AFTER post submission:
Session::put('_token', sha1(microtime()))
2) 发帖后重定向到确认页面:
2) Redirect AFTER post to a confirmation page:
Redirect::route('form/success')->with("data", $myData)
我最终做了第二个.
在 Jason 的评论中,最好结合使用上述两种方法
In a comment via Jason, it may be best to use the combination of both methods outlined above
这篇关于Laravel 4:防止多个表单提交 - CSRF Token的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 4:防止多个表单提交 - CSRF Token
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01