保护 URL 安全的最佳方法是什么?
我使用 spring-mvc 开发一个简单的网站。问题是保护 url 安全的最佳方法是什么? 例如,我有用户和注释。用户只能编辑/删除自己的笔记。 用户使用 localhost/note/edit/1 链接编辑注释,
但我不希望其他用户仅更改 id 参数并查看其他注释。
在这些情况下如何保护 url 的安全?
I develloping a simple website using spring-mvc. The question is what is the best way to secure an url?
For example, i have users and notes. Users can only edit/delete their owns notes.
A user edit a note with the link as localhost/note/edit/1
but i dont want other users to just change the id parameter and see others notes.
how dow you secure url in those cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
然后,您需要在编辑页面的开头检查登录者的用户 ID 是否与数据所有者的用户 ID 匹配。
Then you need to check at the beginning of your edit page that the userID of the logged in person matches that of the owner of the data.
由于您使用的是 Spring 并且希望根据用户 ID 进行授权决策,因此您应该阅读 Spring 访问控制。
但还有很多其他方法来处理授权。不要养成假设用户 ID 是做出这些决定的最佳方式的习惯。阅读“从 ABAC 到 ZBAC” 了解替代方案。
Since you're using Spring and you want your authorization decisions based on user ID, you should read up on Spring Access Control.
But there are a lot of other ways to deal with authorization. Don't get in the habit of assuming that user ID is the best way to make these decisions. Read "From ABAC to ZBAC" to learn about alternatives.