正在使用“转义”标签作为 Django 中良好的安全模式真的是强制性的吗?

发布于 2024-10-16 17:24:00 字数 233 浏览 1 评论 0原文

安全章节中。 com/" rel="nofollow">The Django Book,它说我必须始终使用模板标签 {% escape %} 以保护我的网站免受跨站脚本攻击。

真的有必要在每个模板字符串上放置转义标签吗?有没有办法在应用程序级别指定这一点?

In the security chapter of The Django Book, it says that I must always use the template tag {% escape %} in order to protect my site from cross-site scripting.

Is it really necessary to put the escape tag on every single template string? Is there a way to specify this at application level?

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

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

发布评论

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

评论(2

南烟 2024-10-23 17:24:00

Django 书的那个版本早在 1.0 版本发布之前就已经写好了,而且已经明显过时了。所有模板内容已经自动转义有一段时间了。

That version of the Django book was written well before 1.0 came out, and is significantly out of date. All template content has been autoescaped for quite some time now.

旧人 2024-10-23 17:24:00

在 django 中是自动完成的。要关闭它,您必须使用自动转义标签。我不确定从什么时候开始,但至少从 1.1 版本开始。

{% autoescape off %}
  safe stuff
{% endautoscape %}

In django is been done automatically. To turn it off you have to use the autoescape tag. I'm not sure since when, but at least since 1.1 version.

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