Django 1.2 中还需要 {% csrf_token %} CSRF 保护标签吗?

发布于 2024-10-05 13:00:58 字数 290 浏览 1 评论 0 原文

我正在我的网站上测试 CSRF 保护,我发现了一些意外的情况。

我从表单中删除了 {% csrf_token %},提交仍然有效。我不明白为什么。然后我查看了源代码,意识到令牌仍然位于

元素旁边。我更改了表单的 ID,以确保它确实更新了源代码,确实如此,但隐藏的输入仍然存在。

我正在使用 Django 1.2。 {% csrf_token %} 还需要吗?

干杯

丰富

I am testing the CSRF protection on my site and I have noticed something unexpected.

I removed {% csrf_token %} from my form and the submission still works. I couldn't work out why. I then looked at the source and realised the token was still there right next to the <form> element. I changed the ID of the form to make sure it was definitely updating the source and it was but the hidden input is still there.

I am using Django 1.2. Is {% csrf_token %} still necessary?

Cheers

Rich

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

前事休说 2024-10-12 13:00:58

经过更多调查后发现,如果表单具有 post 方法,则始终会插入 {% csrf_token %} ,否则不会插入。 Django 非常聪明的自动保护。

After more investigation it appears the {% csrf_token %} is always inserted if the form has method post and not if it doesn't. Very clever auto protection from Django.

郁金香雨 2024-10-12 13:00:58

从文档中:

在 Django 1.1 中,模板标签不存在。相反,使用了重新编写 POST 表单以包含 CSRF 令牌的后处理中间件。如果您要从 1.1 或更早版本升级站点,请阅读本节和 升级注释如下。

http://docs.djangoproject.com/ en/dev/ref/contrib/csrf/#legacy-method

From the documentation:

In Django 1.1, the template tag did not exist. Instead, a post-processing middleware that re-wrote POST forms to include the CSRF token was used. If you are upgrading a site from version 1.1 or earlier, please read this section and the Upgrading notes below.

http://docs.djangoproject.com/en/dev/ref/contrib/csrf/#legacy-method

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文