正在使用“转义”标签作为 Django 中良好的安全模式真的是强制性的吗?
在安全章节中。 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
在 django 中是自动完成的。要关闭它,您必须使用自动转义标签。我不确定从什么时候开始,但至少从 1.1 版本开始。
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.