Symfony 2 CRUD:是否有标准方法来自动保护生成的控制器?

发布于 2024-12-04 01:27:01 字数 178 浏览 1 评论 0原文

默认情况下,由命令“doctrine:generate:crud”生成的所有控制器都可以在所有环境(即:开发、测试、生产)中访问。

您如何避免忘记在生产中保护这些控制器?我的意思是这太可怕了

我唯一想到的就是为 CRUD 路由使用安全前缀,并始终记住在生成控制器时使用该前缀。

还有其他想法吗?

All the controllers generated by the command "doctrine:generate:crud" are by default accessible in all the enviroments (ie: dev, test, prod)

How would you go about not forgetting to secure this controllers on production? I mean this is scary

The only thing I came up with is to use a secured prefix for the crud routes, and always remember to use that prefix when generating the controllers.

Any other ideas?

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

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

发布评论

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

评论(1

初见终念 2024-12-11 01:27:01

我认为处理此要求的唯一真正“干净”的方法是通过 security.yml 将对所有路由的访问列入黑名单,并将您希望访问的路由列入白名单。

I think the only really "clean" way of handling this requirement is to blacklist access to all your routes via security.yml, and whitelist those which you want to be accessible.

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