Symfony 2 CRUD:是否有标准方法来自动保护生成的控制器?
默认情况下,由命令“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为处理此要求的唯一真正“干净”的方法是通过 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.